usb: misc: brcmstb-usb-pinmap: Make sync_all_pins static
authorZou Wei <zou_wei@huawei.com>
Fri, 30 Oct 2020 09:28:17 +0000 (17:28 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Nov 2020 10:49:36 +0000 (11:49 +0100)
Fix the following sparse warning:

drivers/usb/misc/brcmstb-usb-pinmap.c:219:6: warning: symbol 'sync_all_pins' was not declared. Should it be static?

The sync_all_pins has only call site within brcmstb-usb-pinmap.c
It should be static

Fixes: 517c4c44b323 ("usb: Add driver to allow any GPIO to be used for 7211 USB signals")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Link: https://lore.kernel.org/r/1604050097-91302-1-git-send-email-zou_wei@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/brcmstb-usb-pinmap.c

index 2326e60545f7fdfedb1a0f1e94761728ab6ae316..b3cfe8666ea7dbc4cc2a030b78b70208355cac71 100644 (file)
@@ -216,7 +216,7 @@ static int parse_pins(struct device *dev, struct device_node *dn,
        return 0;
 }
 
-void sync_all_pins(struct brcmstb_usb_pinmap_data *pdata)
+static void sync_all_pins(struct brcmstb_usb_pinmap_data *pdata)
 {
        struct out_pin *pout;
        struct in_pin *pin;