ASoC: rt286: build warning of section mismatch
authorSudip Mukherjee <sudip@vectorindia.org>
Tue, 18 Nov 2014 12:12:54 +0000 (17:42 +0530)
committerMark Brown <broonie@kernel.org>
Tue, 18 Nov 2014 15:40:18 +0000 (15:40 +0000)
while building we were getting the following build warning:

Section mismatch in reference from the function rt286_i2c_probe()
to the variable .init.data:force_combo_jack_table
The function rt286_i2c_probe() references
the variable __initdata force_combo_jack_table.
This is often because rt286_i2c_probe lacks a __initdata
annotation or the annotation of force_combo_jack_table is wrong.

we were getting the warning as force_combo_jack_table was marked
with __initdata

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/rt286.c

index 2e818aaca550445d391efdf977b44ab4fb05d16f..2cd4fe463102d4532458e1ed3402abd276be8fc1 100644 (file)
@@ -1206,7 +1206,7 @@ static const struct acpi_device_id rt286_acpi_match[] = {
 };
 MODULE_DEVICE_TABLE(acpi, rt286_acpi_match);
 
-static struct dmi_system_id force_combo_jack_table[] __initdata = {
+static struct dmi_system_id force_combo_jack_table[] = {
        {
                .ident = "Intel Wilson Beach",
                .matches = {
This page took 0.034751 seconds and 5 git commands to generate.