1
0
Fork 0
mirror of https://github.com/followmsi/android_kernel_google_msm.git synced 2024-11-06 23:17:41 +00:00

CAIF: fix sparse warning for caif_usb

This fixes the following sparse warning:
net/caif/caif_usb.c:84:16: warning: symbol 'cfusbl_create' was not
declared. Should it be static?

Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Silviu-Mihai Popescu 2013-03-03 21:09:31 +00:00 committed by David S. Miller
parent 7dac1b514a
commit d2123be0e5

View file

@ -81,8 +81,8 @@ static void cfusbl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
layr->up->ctrlcmd(layr->up, ctrl, layr->id); layr->up->ctrlcmd(layr->up, ctrl, layr->id);
} }
struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN], static struct cflayer *cfusbl_create(int phyid, u8 ethaddr[ETH_ALEN],
u8 braddr[ETH_ALEN]) u8 braddr[ETH_ALEN])
{ {
struct cfusbl *this = kmalloc(sizeof(struct cfusbl), GFP_ATOMIC); struct cfusbl *this = kmalloc(sizeof(struct cfusbl), GFP_ATOMIC);