Skip to content

Commit

Permalink
ACPI / LPSS: Remove non-existing clock control from Intel Lynxpoint I2C
Browse files Browse the repository at this point in the history
Intel Lynxpoint I2C does not have clock parameter register like SPI and UART
do have. Therefore remove LPSS_CLK_GATE flag from the Lynxpoint I2C device
description in order to not needlessly toggle clock enable bit in
non-existing register.

Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
jhnikula authored and rafaeljw committed Jan 23, 2015
1 parent 4483d59 commit b893e80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/acpi_lpss.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ static struct lpss_device_desc lpt_dev_desc = {
};

static struct lpss_device_desc lpt_i2c_dev_desc = {
.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_LTR,
.flags = LPSS_CLK | LPSS_LTR,
.prv_offset = 0x800,
};

Expand Down

0 comments on commit b893e80

Please sign in to comment.