]> Pileus Git - ~andy/linux/commitdiff
staging: vt6655: fix coding style problem at assigning netdev_ops
authorDevendra Naga <devendra.aaru@gmail.com>
Thu, 6 Sep 2012 18:38:04 +0000 (00:08 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 8 Sep 2012 05:07:37 +0000 (22:07 -0700)
we are using spaces at the beginning of the line, we should use
tabs instead

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/device_main.c

index bb0b0cf2be9bce321496e2edaa0f6e5c689f98ca..493866acd92c19987a475e0317261656349e8263 100644 (file)
@@ -893,18 +893,15 @@ static bool device_release_WPADEV(PSDevice pDevice)
     return true;
 }
 
-
 static const struct net_device_ops device_netdev_ops = {
-    .ndo_open               = device_open,
-    .ndo_stop               = device_close,
-    .ndo_do_ioctl           = device_ioctl,
-    .ndo_get_stats          = device_get_stats,
-    .ndo_start_xmit         = device_xmit,
-    .ndo_set_rx_mode       = device_set_multi,
+       .ndo_open               = device_open,
+       .ndo_stop               = device_close,
+       .ndo_do_ioctl           = device_ioctl,
+       .ndo_get_stats          = device_get_stats,
+       .ndo_start_xmit         = device_xmit,
+       .ndo_set_rx_mode        = device_set_multi,
 };
 
-
-
 static int __devinit
 vt6655_probe(struct pci_dev *pcid, const struct pci_device_id *ent)
 {