diff options
author | Furquan Shaikh <furquan@chromium.org> | 2016-12-13 21:50:32 -0800 |
---|---|---|
committer | Duncan Laurie <dlaurie@chromium.org> | 2016-12-15 17:26:07 +0100 |
commit | fdc1b2e6b44b2eec04ad9f67e4c7e63b64cd066f (patch) | |
tree | 0f26672e75b7b6ad61f031c5784e98dc88d0dc57 /src/drivers/i2c/wacom/wacom.c | |
parent | e34c16f9157c0438e2ff42cd3b139397d3a7be24 (diff) |
drivers/i2c: Pass in i2c_generic_config into i2c_generic_fill_ssdt
Remove any assumptions required for the drivers using i2c_generic to
have drivers_i2c_generic_config structure at the start of the driver
config. Instead pass in a pointer to drivers_i2c_generic_config from
the calling driver.
Change-Id: I51dc4cad1c1f246b51891abf7115a7120e87b098
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-on: https://review.coreboot.org/17857
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/drivers/i2c/wacom/wacom.c')
-rw-r--r-- | src/drivers/i2c/wacom/wacom.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/i2c/wacom/wacom.c b/src/drivers/i2c/wacom/wacom.c index c54194fc96..e6d12775a2 100644 --- a/src/drivers/i2c/wacom/wacom.c +++ b/src/drivers/i2c/wacom/wacom.c @@ -30,7 +30,8 @@ static void i2c_wacom_fill_dsm(struct device *dev) static void i2c_wacom_fill_ssdt_generator(struct device *dev) { - i2c_generic_fill_ssdt(dev, &i2c_wacom_fill_dsm); + struct drivers_i2c_wacom_config *config = dev->chip_info; + i2c_generic_fill_ssdt(dev, &i2c_wacom_fill_dsm, &config->generic); } static const char *i2c_wacom_acpi_name(struct device *dev) |