diff options
author | Marcus Hufvudsson <[email protected]> | 2014-11-15 16:55:20 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-11-26 15:35:24 -0800 |
commit | 864b52c4aeeba328660574d847190dda76d13519 (patch) | |
tree | 27425eb0f7b3259227855f7e26f9fde1a8985606 | |
parent | 1fe6a03ac8ddbf0fa93fe4aa6d728cdb6c056a1c (diff) |
staging: comedi: me4000: Fixed code style issue
Fixed checkpatch.pl error message. Space prohibited before that ','
Signed-off-by: Marcus Hufvudsson <[email protected]>
Reviewed-by: Ian Abbott <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/comedi/drivers/me4000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/comedi/drivers/me4000.c b/drivers/staging/comedi/drivers/me4000.c index ae6ac49e730e..fc6741919a48 100644 --- a/drivers/staging/comedi/drivers/me4000.c +++ b/drivers/staging/comedi/drivers/me4000.c @@ -416,7 +416,7 @@ static void me4000_reset(struct comedi_device *dev) val |= PLX9052_CNTRL_PCI_RESET; outl(val, info->plx_regbase + PLX9052_CNTRL); val &= ~PLX9052_CNTRL_PCI_RESET; - outl(val , info->plx_regbase + PLX9052_CNTRL); + outl(val, info->plx_regbase + PLX9052_CNTRL); /* 0x8000 to the DACs means an output voltage of 0V */ for (chan = 0; chan < 4; chan++) |