]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi: addi_eeprom: fix remaining checkpatch.pl issues
authorH Hartley Sweeten <hartleys@visionengravers.com>
Tue, 30 Oct 2012 00:09:54 +0000 (17:09 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 30 Oct 2012 17:50:15 +0000 (10:50 -0700)
Fix the following checkpatch.pl issues:

ERROR: code indent should use tabs where possible
WARNING: please, no spaces at the start of a line
WARNING: line over 80 characters

This file is now checkpatch.pl clean.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/addi-data/addi_eeprom.c

index 95a1974abce031329b2d3e1978071b76183e0ff5..68b85e2925c5c78a3016ab01fad413e02c13d590 100644 (file)
@@ -92,7 +92,7 @@ static unsigned short addi_eeprom_readw_93c76(unsigned long iobase,
        unsigned short val = 0;
        unsigned int cmd;
        unsigned int tmp;
-        int i;
+       int i;
 
        /* Send EEPROM read command and offset to EEPROM */
        cmd = EE93C76_READ_CMD | (addr / 2);
@@ -143,7 +143,8 @@ static unsigned short addi_eeprom_readw_nvram(unsigned long iobase,
                /* Load the high 8 bit address */
                outb(NVCMD_LOAD_HIGH, iobase + AMCC_OP_REG_MCSR_NVCMD);
                addi_eeprom_nvram_wait(iobase);
-               outb(((addr + i) >> 8) & 0xff, iobase + AMCC_OP_REG_MCSR_NVDATA);
+               outb(((addr + i) >> 8) & 0xff,
+                       iobase + AMCC_OP_REG_MCSR_NVDATA);
                addi_eeprom_nvram_wait(iobase);
 
                /* Read the eeprom data byte */