staging: wlan-ng: p80211netdev.c: fixed checkpatch error
New kernel developer inspired by the 2010 FOSDEM talk. Running checkpatch on p80211netdev.c gave the error: p80211netdev.c:153: ERROR: "foo * bar" should be "foo *bar". Fixed it by doing what was suggested. Signed-off-by: Sebastiaan de Haan <sebastiaan@sebastiaandehaan.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ea50a5da79
commit
aa8c2a0358
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ static int p80211knetdev_init(netdevice_t *netdev)
|
||||||
* Returns:
|
* Returns:
|
||||||
* the address of the statistics structure
|
* the address of the statistics structure
|
||||||
----------------------------------------------------------------*/
|
----------------------------------------------------------------*/
|
||||||
static struct net_device_stats *p80211knetdev_get_stats(netdevice_t * netdev)
|
static struct net_device_stats *p80211knetdev_get_stats(netdevice_t *netdev)
|
||||||
{
|
{
|
||||||
wlandevice_t *wlandev = netdev->ml_priv;
|
wlandevice_t *wlandev = netdev->ml_priv;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue