Merge branch 'acpi-lpss'

* acpi-lpss:
  ACPI / LPSS: make code less confusing for reader
  ACPI / LPSS: Add support for exposing LTR registers to user space
  ACPI / scan: Add special handler for Intel Lynxpoint LPSS devices
This commit is contained in:
Rafael J. Wysocki
2013-04-28 01:53:41 +02:00
11 changed files with 368 additions and 213 deletions

View File

@@ -59,6 +59,11 @@ int acpi_debugfs_init(void);
#else
static inline void acpi_debugfs_init(void) { return; }
#endif
#ifdef CONFIG_X86_INTEL_LPSS
void acpi_lpss_init(void);
#else
static inline void acpi_lpss_init(void) {}
#endif
/* --------------------------------------------------------------------------
Device Node Initialization / Removal
@@ -142,4 +147,7 @@ static inline void suspend_nvs_restore(void) {}
-------------------------------------------------------------------------- */
struct platform_device;
int acpi_create_platform_device(struct acpi_device *adev,
const struct acpi_device_id *id);
#endif /* _ACPI_INTERNAL_H_ */