]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/commitdiff
x86, mrst: A function in a header file needs to be marked "inline"
authorH. Peter Anvin <hpa@linux.intel.com>
Thu, 7 Oct 2010 23:42:54 +0000 (16:42 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 22 Nov 2010 19:03:03 +0000 (11:03 -0800)
commit 55572b293b3a5929e8c54bc91d14ae6264186bf6 upstream.

A function in a header file needs to be explicitly marked "inline", or
gcc will complain if it is not used.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: Jacob Pan <jacob.jun.pan@linux.intel.com>
LKML-Reference: <1274295685-6774-3-git-send-email-jacob.jun.pan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/x86/include/asm/mrst.h

index 16350740edf600436d4990fec8a5fc9ce62abafc..33fc2966beb7081a84a98c94b8c77f3486b400cd 100644 (file)
@@ -26,7 +26,7 @@ enum mrst_cpu_type {
 };
 
 extern enum mrst_cpu_type __mrst_cpu_chip;
-static enum mrst_cpu_type mrst_identify_cpu(void)
+static inline enum mrst_cpu_type mrst_identify_cpu(void)
 {
        return __mrst_cpu_chip;
 }