Confused about section type conflicts and __initdata

From: Dmitry Torokhov
Date: Tue May 30 2006 - 14:36:25 EST


Hi,

I am trying to declare dmi_ids in drivers/input/misc/wistron_btns.c as
__initdata but gcc keeps bitching about
"drivers/input/misc/wistron_btns.c:326: error: dmi_ids causes a
section type conflict" unless I also declare that variable as "const".
I checked GCC's assembler output and using "static const struct
dmi_system_id __initdata dmi_ids[] = {..." does indeed get it into
".init.data" section but comments in include/linux/init.h specifically
mention that the data can't be const... This is with GCC 3.4.4.

Anyone have any ideas, pretty please?

--
Dmitry
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/