usb: g_ffs: fix compilation warning
authorDavid Cohen <david.a.cohen@linux.intel.com>
Fri, 4 Oct 2013 22:30:21 +0000 (15:30 -0700)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:46:18 +0000 (11:46 +0900)
commit69e90aecf91b15819c67c4023520a7d8337d392c
tree0a417932e8db8ac310fcc5adf41df831aadfc7e1
parent64e6ecca151acdc1e840422b8f64e59e21b17869
usb: g_ffs: fix compilation warning

If USB_FUNCTIONFS is selected without USB_FUNCTIONFS_ETH and
USB_FUNCTIONFS_RNIS, u_ether.h won't be included and then
USB_ETHERNET_MODULE_PARAMAETERS macro won't be available causing the
following warning compilation:

drivers/usb/gadget/g_ffs.c:81:1: warning: data definition has no type or
storage class [enabled by default]
drivers/usb/gadget/g_ffs.c:81:1: warning: type defaults to ‘int’ in
declaration of ‘USB_ETHERNET_MODULE_PARAMETERS’ [-Wimplicit-int]
drivers/usb/gadget/g_ffs.c:81:1: warning: function declaration isn’t a
prototype [-Wstrict-prototypes]

This patch fixes the warning by making USB_ETHERNET_MODULE_PARAMETERS to
be used iff u_ether.h is included, otherwise it is not needed.

Signed-off-by: David Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/g_ffs.c