Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aee0bda8 authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman
Browse files

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: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 37cc9913
Loading
Loading
Loading
Loading
+293 −292
Original line number Diff line number Diff line
@@ -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)
{