Skip to content

Commit

Permalink
rtl8xxxu: fix unused rtl8192cu_fops compiler warning
Browse files Browse the repository at this point in the history
kbuild reported:

rtl8xxxu.c:5786:32: warning: ‘rtl8192cu_fops’ defined but not used [-Wunused-variable]

Fix it by adding temporary ifdefs around the static functions.

Fixes: 033695b ("rtl8xxxu: move devices supported by rtlwifi under UNTESTED config")
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
  • Loading branch information
Kalle Valo committed Oct 26, 2015
1 parent 033695b commit c096377
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1818,6 +1818,8 @@ static int rtl8723au_parse_efuse(struct rtl8xxxu_priv *priv)
return 0;
}

#ifdef CONFIG_RTL8XXXU_UNTESTED

static int rtl8192cu_parse_efuse(struct rtl8xxxu_priv *priv)
{
int i;
Expand Down Expand Up @@ -1885,6 +1887,8 @@ static int rtl8192cu_parse_efuse(struct rtl8xxxu_priv *priv)
return 0;
}

#endif

static int
rtl8xxxu_read_efuse8(struct rtl8xxxu_priv *priv, u16 offset, u8 *data)
{
Expand Down Expand Up @@ -2217,6 +2221,8 @@ static int rtl8723au_load_firmware(struct rtl8xxxu_priv *priv)
return ret;
}

#ifdef CONFIG_RTL8XXXU_UNTESTED

static int rtl8192cu_load_firmware(struct rtl8xxxu_priv *priv)
{
char *fw_name;
Expand All @@ -2234,6 +2240,8 @@ static int rtl8192cu_load_firmware(struct rtl8xxxu_priv *priv)
return ret;
}

#endif

static void rtl8xxxu_firmware_self_reset(struct rtl8xxxu_priv *priv)
{
u16 val16;
Expand Down Expand Up @@ -3815,6 +3823,8 @@ static int rtl8723au_power_on(struct rtl8xxxu_priv *priv)
return ret;
}

#ifdef CONFIG_RTL8XXXU_UNTESTED

static int rtl8192cu_power_on(struct rtl8xxxu_priv *priv)
{
u8 val8;
Expand Down Expand Up @@ -3918,6 +3928,8 @@ static int rtl8192cu_power_on(struct rtl8xxxu_priv *priv)
return 0;
}

#endif

static void rtl8xxxu_power_off(struct rtl8xxxu_priv *priv)
{
u8 val8;
Expand Down Expand Up @@ -5783,13 +5795,17 @@ static struct rtl8xxxu_fileops rtl8723au_fops = {
.writeN_block_size = 1024,
};

#ifdef CONFIG_RTL8XXXU_UNTESTED

static struct rtl8xxxu_fileops rtl8192cu_fops = {
.parse_efuse = rtl8192cu_parse_efuse,
.load_firmware = rtl8192cu_load_firmware,
.power_on = rtl8192cu_power_on,
.writeN_block_size = 128,
};

#endif

static struct usb_device_id dev_table[] = {
{USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x8724, 0xff, 0xff, 0xff),
.driver_info = (unsigned long)&rtl8723au_fops},
Expand Down

0 comments on commit c096377

Please sign in to comment.