From 564547f2838599788d4b4873695394c9be61cf09 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Wed, 2 May 2018 10:27:36 +0530 Subject: src/device: Fix discarded-qualifiers compilation issue coreboot build is broken due to CL: I6830a65bc9cea2907f4209bb97a53ccebcbf248d This patch ensures to build coreboot successfully. Change-Id: I4c9dfc9b19ce159ce1abcfbb287be4ce273cbaf1 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/25985 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Patrick Georgi --- src/console/post.c | 2 +- src/device/device_util.c | 2 +- src/include/console/console.h | 2 +- src/include/device/device.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/console/post.c b/src/console/post.c index 1caa4b550a..969c7c703f 100644 --- a/src/console/post.c +++ b/src/console/post.c @@ -108,7 +108,7 @@ void post_log_extra(u32 value) spin_unlock(&cmos_post_lock); } -void post_log_path(struct device *dev) +void post_log_path(const struct device *dev) { if (dev) { /* Encode path into lower 3 bytes */ diff --git a/src/device/device_util.c b/src/device/device_util.c index 3d7f5a154a..a64b63ae23 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -209,7 +209,7 @@ struct device *dev_find_class(unsigned int class, struct device *from) * @param dev The device path to encode. * @return Device path encoded into lower 3 bytes of dword. */ -u32 dev_path_encode(struct device *dev) +u32 dev_path_encode(const struct device *dev) { u32 ret; diff --git a/src/include/console/console.h b/src/include/console/console.h index 1ecf89c288..535401f7db 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -31,7 +31,7 @@ void post_code(u8 value); #if IS_ENABLED(CONFIG_CMOS_POST_EXTRA) void post_log_extra(u32 value); struct device; -void post_log_path(struct device *dev); +void post_log_path(const struct device *dev); void post_log_clear(void); #else #define post_log_extra(x) do {} while (0) diff --git a/src/include/device/device.h b/src/include/device/device.h index 48a5bcc221..744836d9ed 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -185,7 +185,7 @@ void scan_bridges(struct bus *bus); void assign_resources(struct bus *bus); const char *dev_name(struct device *dev); const char *dev_path(const struct device *dev); -u32 dev_path_encode(struct device *dev); +u32 dev_path_encode(const struct device *dev); const char *bus_path(struct bus *bus); void dev_set_enabled(struct device *dev, int enable); void disable_children(struct bus *bus); -- cgit v1.2.3