From: Devendra Naga Date: Thu, 6 Sep 2012 18:38:04 +0000 (+0530) Subject: staging: vt6655: fix coding style problem at assigning netdev_ops X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=502eb5369f51539aaee6ec173165be28d916a3ca;p=linux-beck.git 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 Signed-off-by: Greg Kroah-Hartman --- 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) {