Staging: comedi: fix line indentation issue in dt9812.c
authorRavishankar Karkala Mallikarjunayya <ravishankarkm32@gmail.com>
Tue, 1 May 2012 06:25:08 +0000 (11:55 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 2 May 2012 04:54:08 +0000 (21:54 -0700)
Replaced the spaces with a tab.

Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/dt9812.c

index 89a49dd..72110fc 100644 (file)
@@ -196,7 +196,7 @@ struct dt9812_flash_data {
 };
 
 #define DT9812_MAX_NUM_MULTI_BYTE_RDS  \
-    ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / sizeof(u8))
+       ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / sizeof(u8))
 
 struct dt9812_read_multi {
        u8 count;
@@ -209,8 +209,8 @@ struct dt9812_write_byte {
 };
 
 #define DT9812_MAX_NUM_MULTI_BYTE_WRTS  \
-    ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / \
-      sizeof(struct dt9812_write_byte))
+       ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / \
+        sizeof(struct dt9812_write_byte))
 
 struct dt9812_write_multi {
        u8 count;
@@ -224,7 +224,8 @@ struct dt9812_rmw_byte {
 };
 
 #define DT9812_MAX_NUM_MULTI_BYTE_RMWS  \
-    ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / sizeof(struct dt9812_rmw_byte))
+       ((DT9812_MAX_WRITE_CMD_PIPE_SIZE - 4 - 1) / \
+        sizeof(struct dt9812_rmw_byte))
 
 struct dt9812_rmw_multi {
        u8 count;