Browse Source

staging/comedi: fix the spaces issue around that '=' in drivers/ni_670x.c

fixed below checkpatch error.
- ERROR: spaces required around that '=' (ctx:WxV)

Signed-off-by: YAMANE Toshiaki <yamanetoshi@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
YAMANE Toshiaki 13 years ago
parent
commit
9e4edd5794
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/comedi/drivers/ni_670x.c

+ 1 - 1
drivers/staging/comedi/drivers/ni_670x.c

@@ -322,7 +322,7 @@ static DEFINE_PCI_DEVICE_TABLE(ni_670x_pci_table) = {
 MODULE_DEVICE_TABLE(pci, ni_670x_pci_table);
 
 static struct pci_driver ni_670x_pci_driver = {
-	.name		="ni_670x",
+	.name		= "ni_670x",
 	.id_table	= ni_670x_pci_table,
 	.probe		= ni_670x_pci_probe,
 	.remove		= __devexit_p(ni_670x_pci_remove),