aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655
diff options
context:
space:
mode:
authorDevendra Naga <devendra.aaru@gmail.com>2012-09-07 00:08:04 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-07 22:07:37 -0700
commit502eb5369f51539aaee6ec173165be28d916a3ca (patch)
tree97fb79ea7ee34fd1e0f5b95d32b7fc86f4dcd51e /drivers/staging/vt6655
parentstaging: vt6655: fix coding style issues in device_get_options (diff)
downloadlinux-dev-502eb5369f51539aaee6ec173165be28d916a3ca.tar.xz
linux-dev-502eb5369f51539aaee6ec173165be28d916a3ca.zip
staging: vt6655: fix coding style problem at assigning netdev_ops
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>
Diffstat (limited to 'drivers/staging/vt6655')
-rw-r--r--drivers/staging/vt6655/device_main.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c
index bb0b0cf2be9b..493866acd92c 100644
--- a/drivers/staging/vt6655/device_main.c
+++ b/drivers/staging/vt6655/device_main.c
@@ -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)
{