Re: [PATCH] tap: make struct tap_fops static

2017-08-13 Thread David Miller
From: Colin King Date: Sat, 12 Aug 2017 22:52:31 +0100 > From: Colin Ian King > > The structure tap_fops is local to the source and does not need to > be in global scope, so make it static. > > Cleans up sparse warning: > symbol 'tap_fops' was not declared. Should it be static? > > Signed-off

[PATCH] tap: make struct tap_fops static

2017-08-12 Thread Colin King
From: Colin Ian King The structure tap_fops is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: symbol 'tap_fops' was not declared. Should it be static? Signed-off-by: Colin Ian King --- drivers/net/tap.c | 2 +- 1 file changed, 1 inser