Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14064
-gerrit
commit 1f32b218d9cb60fa427977f23df0864ca7f52bf6 Author: Patrick Georgi pgeorgi@chromium.org Date: Sat Mar 12 09:28:59 2016 +0100
parade/ps8640: Clean up
Sort out some style issues that were identified by Paul.
Change-Id: I9ed946ae613c87234f8c9824eb14b8d28909dfcf Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- src/drivers/parade/ps8640/ps8640.c | 2 +- src/drivers/parade/ps8640/ps8640.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/drivers/parade/ps8640/ps8640.c b/src/drivers/parade/ps8640/ps8640.c index 08de2ee..dea7be3 100644 --- a/src/drivers/parade/ps8640/ps8640.c +++ b/src/drivers/parade/ps8640/ps8640.c @@ -25,7 +25,7 @@ int ps8640_get_edid(uint8_t bus, uint8_t chip, struct edid *out) { int ret; u8 edid[EDID_LENGTH * 2]; - u32 edid_size; + int edid_size;
i2c_writeb(bus, chip + 2, PAGE2_I2C_BYPASS, EDID_I2C_ADDR | I2C_BYPASS_EN); diff --git a/src/drivers/parade/ps8640/ps8640.h b/src/drivers/parade/ps8640/ps8640.h index 9e483b6..f7b4006 100644 --- a/src/drivers/parade/ps8640/ps8640.h +++ b/src/drivers/parade/ps8640/ps8640.h @@ -42,4 +42,3 @@ enum { int ps8640_init(uint8_t bus, uint8_t chip); int ps8640_get_edid(uint8_t bus, uint8_t chip, struct edid *out); #endif -