1
0
Fork 0

staging: csr: drv.c: replace spaces with tabs in uf_destroy_device_nodes

replace spaces at the start of line with tabs

Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
wifi-calibration
Devendra Naga 2012-10-30 15:18:39 -04:00 committed by Greg Kroah-Hartman
parent a319cefe32
commit ffe6d91cdb
1 changed files with 4 additions and 4 deletions

View File

@ -2018,10 +2018,10 @@ int uf_create_device_nodes(unifi_priv_t *priv, int bus_id)
void uf_destroy_device_nodes(unifi_priv_t *priv)
{
device_destroy(unifi_class, priv->unifiudi_cdev.dev);
device_destroy(unifi_class, priv->unifi_cdev.dev);
cdev_del(&priv->unifiudi_cdev);
cdev_del(&priv->unifi_cdev);
device_destroy(unifi_class, priv->unifiudi_cdev.dev);
device_destroy(unifi_class, priv->unifi_cdev.dev);
cdev_del(&priv->unifiudi_cdev);
cdev_del(&priv->unifi_cdev);
}