drivers/i2c/generic: Fix compile failure

This variable name was changed in chip.h but not the consumer
and it was submitted before it was caught.

Change-Id: I7c492b588b2fd854a9eeac36029a46da324a7b1b
Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Reviewed-on: https://review.coreboot.org/15109
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
Duncan Laurie 2016-06-08 13:49:40 -07:00
parent 4cff1d52a5
commit 14b2a4d574
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ static void i2c_generic_fill_ssdt(struct device *dev)
struct acpi_i2c i2c = {
.address = dev->path.i2c.device,
.mode_10bit = dev->path.i2c.mode_10bit,
.speed = config->bus_speed ? : I2C_SPEED_FAST,
.speed = config->speed ? : I2C_SPEED_FAST,
.resource = scope,
};