[PATCH 3/4] spi: omap-100k: Fixed spacing on commas

2013-11-27 Thread Thomas Behan
checkpatch.pl generated 5 errors due to missing spaces after commas. These errors have been fixed. Signed-off-by: Thomas Behan --- drivers/spi/spi-omap-100k.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/spi/spi-omap-100k.c b/drivers/spi/spi-omap-100k.c

[PATCH 1/4] spi: omap-100k: Fixed spacing on while loops

2013-11-27 Thread Thomas Behan
checkpatch.pl generated several errors from "while(" statements which should have read "while (" to comply with the style guide. These errors have been fixed. Signed-off-by: Thomas Behan --- drivers/spi/spi-omap-100k.c | 10 +- 1 file changed, 5 insertions(+), 5 dele

[PATCH 2/4] spi: omap-100k: Fixed spacing on -= operators

2013-11-27 Thread Thomas Behan
checkpatch.pl generated 3 errors from "x-=" statements which should have read "x -= x" to comply with the style guide. These errors have been fixed. Signed-off-by: Thomas Behan --- drivers/spi/spi-omap-100k.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff

[PATCH 4/4] spi: omap-100k: Fixed style of sizeof operators

2013-11-27 Thread Thomas Behan
checkpatch.pl generated 2 warning due to "sizeof x" being used instead of "sizeof(x)". These warnings have been fixed. Signed-off-by: Thomas Behan --- drivers/spi/spi-omap-100k.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/spi/spi-omap-

[PATCH 0/4] spi: omap-100k: Style Fixes

2013-11-27 Thread Thomas Behan
Any feedback is much appreciated. Thomas Behan (4): spi: omap-100k: Fixed spacing on while loops spi: omap-100k: Fixed spacing on -= operators spi: omap-100k: Fixed spacing on commas spi: omap-100k: Fixed style of sizeof operators drivers/spi/spi-omap-100k.c