* silence smp_read_mpc_oem() declared static but never defined warning
@ 2003-10-12 7:36 William Lee Irwin III
0 siblings, 0 replies; only message in thread
From: William Lee Irwin III @ 2003-10-12 7:36 UTC (permalink / raw)
To: linux-kernel
Moving the static function prototype within the calling inline silences
this annoying warning.
diff -prauN linux-2.6.0-test7-bk3/include/asm-i386/mach-numaq/mach_mpparse.h numaq-2.6.0-test7-bk3-1/include/asm-i386/mach-numaq/mach_mpparse.h
--- linux-2.6.0-test7-bk3/include/asm-i386/mach-numaq/mach_mpparse.h 2003-10-08 12:24:04.000000000 -0700
+++ numaq-2.6.0-test7-bk3-1/include/asm-i386/mach-numaq/mach_mpparse.h 2003-10-12 00:22:31.000000000 -0700
@@ -1,9 +1,6 @@
#ifndef __ASM_MACH_MPPARSE_H
#define __ASM_MACH_MPPARSE_H
-static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable,
- unsigned short oemsize);
-
static inline void mpc_oem_bus_info(struct mpc_config_bus *m, char *name,
struct mpc_config_translation *translation)
{
@@ -27,6 +24,7 @@ static inline void mpc_oem_pci_bus(struc
static inline void mps_oem_check(struct mp_config_table *mpc, char *oem,
char *productid)
{
+ static void smp_read_mpc_oem(struct mp_config_oemtable *, unsigned short);
if (strncmp(oem, "IBM NUMA", 8))
printk("Warning! May not be a NUMA-Q system!\n");
if (mpc->mpc_oemptr)
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-10-12 7:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-12 7:36 silence smp_read_mpc_oem() declared static but never defined warning William Lee Irwin III
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.