summaryrefslogtreecommitdiff
path: root/src/ec/lenovo/h8/h8.h
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-04-24 21:39:08 -0700
committerFurquan Shaikh <furquan@google.com>2020-04-28 19:49:49 +0000
commit4fc17b47a42e7e530a0921d62f399008541c0908 (patch)
tree5e8a2c11728689e6e04deed7dfa5dc239efc6613 /src/ec/lenovo/h8/h8.h
parent0f6e652f397672efcb920cf97a77f488bd82ad97 (diff)
downloadcoreboot-4fc17b47a42e7e530a0921d62f399008541c0908.tar.xz
ec/lenovo/h8: Constify struct device * parameter to h8_has_* functions
h8_has_bdc() and h8_has_wwan() do not need to modify the device structure. Hence, this change makes the struct device * parameter to these functions as const. This is being done in preparation to make struct device * parameter to fill_ssdt as const. Change-Id: Id3d65d2de7b5161b0e7cff26055c00d5dae967dc Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40706 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/ec/lenovo/h8/h8.h')
-rw-r--r--src/ec/lenovo/h8/h8.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/lenovo/h8/h8.h b/src/ec/lenovo/h8/h8.h
index ecc9aabba6..8999cc377a 100644
--- a/src/ec/lenovo/h8/h8.h
+++ b/src/ec/lenovo/h8/h8.h
@@ -29,11 +29,11 @@ int h8_get_sense_ready(void);
void h8_bluetooth_enable(int on);
bool h8_bluetooth_nv_enable(void);
-bool h8_has_bdc(struct device *dev);
+bool h8_has_bdc(const struct device *dev);
void h8_wwan_enable(int on);
bool h8_wwan_nv_enable(void);
-bool h8_has_wwan(struct device *dev);
+bool h8_has_wwan(const struct device *dev);
void h8_ssdt_generator(struct device *dev);