mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-13 08:30:18 +00:00
USB: rndis: section mismatch fix
This patch removes the following section mismatch warning, by moving the function rndis_init() from .init.text to .text. WARNING: vmlinux.o(.text+0x1aeca5a): Section mismatch in reference from the function rndis_bind_config() to the function .init.text:rndis_init() The function rndis_bind_config() references the function __init rndis_init(). This is often because rndis_bind_config lacks a __init annotation or the annotation of rndis_init is wrong. Signed-off-by: Henrik Kretzschmar <henne@nachtwindheim.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
08a3b3b1c2
commit
793f03aa7b
@ -1148,7 +1148,7 @@ static struct proc_dir_entry *rndis_connect_state [RNDIS_MAX_CONFIGS];
|
|||||||
#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
|
#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
|
||||||
|
|
||||||
|
|
||||||
int __init rndis_init (void)
|
int rndis_init(void)
|
||||||
{
|
{
|
||||||
u8 i;
|
u8 i;
|
||||||
|
|
||||||
|
@ -262,7 +262,7 @@ int rndis_signal_disconnect (int configNr);
|
|||||||
int rndis_state (int configNr);
|
int rndis_state (int configNr);
|
||||||
extern void rndis_set_host_mac (int configNr, const u8 *addr);
|
extern void rndis_set_host_mac (int configNr, const u8 *addr);
|
||||||
|
|
||||||
int __devinit rndis_init (void);
|
int rndis_init(void);
|
||||||
void rndis_exit (void);
|
void rndis_exit (void);
|
||||||
|
|
||||||
#endif /* _LINUX_RNDIS_H */
|
#endif /* _LINUX_RNDIS_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user