staging: cxt1e1: Fix no spaces at the start of a line in hwprobe.c

clean up checkpatch.pl warnings:
WARNING: please no spaces at the start of a line in

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Daeseok Youn 2014-02-27 23:11:04 -08:00 committed by Greg Kroah-Hartman
parent 37cc9913d8
commit aee0bda81b

View File

@ -52,7 +52,8 @@ show_two(hdw_info_t *hi, int brdno)
char banner[80];
char sn[6];
memset(banner, 0, 80); /* clear print buffer */
/* clear print buffer */
memset(banner, 0, 80);
ci = (ci_t *)(netdev_priv(hi->ndev));
bid = sbeid_get_bdname(ci);
@ -228,6 +229,7 @@ c4_hdw_init(struct pci_dev *pdev, int found)
pr_warning("unexpected devfun: 0x%x\n", pdev->devfn);
return 0;
}
if (pdev->bus) /* obtain bus number */
busno = pdev->bus->number;
else
@ -287,7 +289,6 @@ c4_hdw_init(struct pci_dev *pdev, int found)
return 1;
}
status_t __init
c4hw_attach_all(void)
{