1. 15 3月, 2010 2 次提交
  2. 23 1月, 2010 2 次提交
  3. 20 1月, 2010 1 次提交
  4. 16 1月, 2010 1 次提交
    • L
      ACPI: Fix section mismatch error for acpi_early_processor_set_pdc() · 7a0b73a4
      Luck, Tony 提交于
      Alex Chiang introduced acpi_early_processor_set_pdc() in commit:
       ACPI: processor: call _PDC early
       78f16996
      
      But this results in a section mismatch:
      
      WARNING: drivers/acpi/acpi.o(.text+0xa9c1): Section mismatch in reference from the
      function acpi_early_processor_set_pdc() to the variable .cpuinit.data:processor_idle_dmi_table
      The function acpi_early_processor_set_pdc() references
      the variable __cpuinitdata processor_idle_dmi_table.
      This is often because acpi_early_processor_set_pdc lacks a __cpuinitdata
      annotation or the annotation of processor_idle_dmi_table is wrong.
      
      The only caller of acpi_early_processor_set_pdc() is acpi_bus_init() which
      is an "__init" function. So the correct fix here is to mark
      acpi_early_processor_set_pdc() "__init" too.
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      Acked-by: NAlex Chiang <achiang@hp.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      7a0b73a4
  5. 22 12月, 2009 10 次提交