From: Henrik Kretzschmar Date: Fri, 20 Aug 2010 17:57:50 +0000 (+0200) Subject: USB: rndis: section mismatch fix X-Git-Tag: v2.6.36-rc4~90^2~14 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=793f03aa7bda8f492e12ada3de711b4ad7f4d8d0;p=pandora-kernel.git 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed