1. 20 Mar, 2007 2 commits
    • Len Brown's avatar
      ACPI: IA64: fix %ll build warnings · 0cd4554d
      Len Brown authored
      acpi_integer is 64-bits on all platforms, and so was defined as a u64.
      
      i386 and x86_64 define u64 as unsigned long long.
      ia64 defines u64 as long.
      
      While these are all 64-bits, the kernel build warns about formating
      a "long" with %ll:
      
      drivers/ata/libata-acpi.c:176: warning: long long unsigned int format, acpi_integer arg (arg 5)
      
      So skip using "u64" and define acpi_integer as "unsigned long long"
      to make gcc happy with %ll.
      Signed-off-by: default avatarLen Brown <len.brown@intel.com>
      0cd4554d
    • Len Brown's avatar
      ACPI: IA64: fix allnoconfig build · 8140a90e
      Len Brown authored
      The evils of Kconfig's select bite us once again...
      ia64/Kconfig selects ACPI, which depends on PM.
      But select ignores dependencies, allnoconfig
      chooses CONFIG_PM=n, and thus the menu of sub-options
      under ACPI vanish, which breaks the build.
      
      Manually select PM along with ACPI for now.
      Some day, we should delete them both, or fix select.
      
      Cc: Tony Luck <tony.luck@intel.com>
      Signed-off-by: default avatarLen Brown <len.brown@intel.com>
      8140a90e
  2. 16 Mar, 2007 1 commit
  3. 13 Mar, 2007 1 commit
  4. 12 Mar, 2007 1 commit
  5. 10 Mar, 2007 35 commits