tap: make struct tap_fops static
authorColin Ian King <colin.king@canonical.com>
Sat, 12 Aug 2017 21:52:31 +0000 (22:52 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 14 Aug 2017 03:10:31 +0000 (20:10 -0700)
commitd17eb73bb713dc8dd389aa87606b90edb0d258b2
tree46563ee1a5dda963876c1a17d30be58dad8f7a40
parent7acd43296889a71ecf9c20498465f672e667a9ad
tap: make struct tap_fops static

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 <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tap.c