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>
This commit is contained in:
Devendra Naga 2012-09-07 00:08:04 +05:30 committed by Greg Kroah-Hartman
parent bf76ebd9cf
commit 502eb5369f

View file

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