Commit b8a84365 authored by Lubomir Rintel's avatar Lubomir Rintel Committed by Andy Shevchenko
Browse files

Platform: OLPC: Make olpc_dt_compatible_match() static __init



Addresses a kbuild warning:

  >> WARNING: vmlinux.o(.text+0x3b764): Section mismatch in reference from
              the function olpc_dt_compatible_match() to the function
              .init.text:olpc_dt_getproperty()

Signed-off-by: default avatarLubomir Rintel <lkundrak@v3.sk>
Reported-by: default avatarkbuild test robot <lkp@intel.com>
Fixes: a7a9bacb (x86/platform/olpc: Use a correct version when making up a battery node)
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent cdaf018c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -220,7 +220,7 @@ static u32 __init olpc_dt_get_board_revision(void)
	return be32_to_cpu(rev);
}

int olpc_dt_compatible_match(phandle node, const char *compat)
static int __init olpc_dt_compatible_match(phandle node, const char *compat)
{
	char buf[64], *p;
	int plen, len;