Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] gp8psk: make local symbol gp8psk_fe_ops static

Fixes the following sparse warning:

drivers/media/usb/dvb-usb/gp8psk.c:281:28: warning:
symbol 'gp8psk_fe_ops' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

authored by

Wei Yongjun and committed by
Mauro Carvalho Chehab
d46e0a8b 634b2b5c

+1 -1
+1 -1
drivers/media/usb/dvb-usb/gp8psk.c
··· 278 278 return gp8psk_bcm4500_reload(d); 279 279 } 280 280 281 - const struct gp8psk_fe_ops gp8psk_fe_ops = { 281 + static const struct gp8psk_fe_ops gp8psk_fe_ops = { 282 282 .in = gp8psk_fe_in, 283 283 .out = gp8psk_fe_out, 284 284 .reload = gp8psk_fe_reload,