[coreboot-gerrit] Change in coreboot[master]: src/device: Fix discarded-qualifiers compilation issue

Subrata Banik (Code Review) gerrit at coreboot.org
Wed May 2 07:04:08 CEST 2018


Subrata Banik has uploaded this change for review. ( https://review.coreboot.org/25985


Change subject: src/device: Fix discarded-qualifiers compilation issue
......................................................................

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 <subrata.banik at intel.com>
---
M src/console/post.c
M src/device/device_util.c
M src/include/console/console.h
M src/include/device/device.h
4 files changed, 4 insertions(+), 4 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/25985/1

diff --git a/src/console/post.c b/src/console/post.c
index 1caa4b5..969c7c7 100644
--- a/src/console/post.c
+++ b/src/console/post.c
@@ -108,7 +108,7 @@
 	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 3d7f5a1..a64b63a 100644
--- a/src/device/device_util.c
+++ b/src/device/device_util.c
@@ -209,7 +209,7 @@
  * @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 1ecf89c..535401f 100644
--- a/src/include/console/console.h
+++ b/src/include/console/console.h
@@ -31,7 +31,7 @@
 #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 48a5bcc..744836d 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -185,7 +185,7 @@
 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);

-- 
To view, visit https://review.coreboot.org/25985
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I4c9dfc9b19ce159ce1abcfbb287be4ce273cbaf1
Gerrit-Change-Number: 25985
Gerrit-PatchSet: 1
Gerrit-Owner: Subrata Banik <subrata.banik at intel.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180502/2bfbe6a5/attachment-0001.html>


More information about the coreboot-gerrit mailing list