HAOUAS Elyes has uploaded this change for review.

View Change

ec/lenovo/pmh7: Fix error: conversion from 'int' to 'signed char:1'

Change-Id: Ie6c5a424ff49a2df586432e1390d5a30166d6c6a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
---
M src/ec/lenovo/pmh7/chip.h
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/92/34092/1
diff --git a/src/ec/lenovo/pmh7/chip.h b/src/ec/lenovo/pmh7/chip.h
index 46f74c1..3189767 100644
--- a/src/ec/lenovo/pmh7/chip.h
+++ b/src/ec/lenovo/pmh7/chip.h
@@ -17,8 +17,8 @@
#define EC_LENOVO_PMH7_CHIP_H

struct ec_lenovo_pmh7_config {
- int backlight_enable:1;
- int dock_event_enable:1;
+ signed char backlight_enable:1;
+ signed char dock_event_enable:1;
};

#endif /* EC_LENOVO_PMH7_CHIP_H */

To view, visit change 34092. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ie6c5a424ff49a2df586432e1390d5a30166d6c6a
Gerrit-Change-Number: 34092
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas@noos.fr>
Gerrit-MessageType: newchange