diff options
author | Subrata Banik <subrata.banik@intel.com> | 2018-05-02 10:27:36 +0530 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-02 08:06:06 +0000 |
commit | 564547f2838599788d4b4873695394c9be61cf09 (patch) | |
tree | b06a25394348746299c158eb55ecb18080449502 /src/console | |
parent | 00877386eec0e55d102864197fc29117f1159cb9 (diff) |
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@intel.com>
Reviewed-on: https://review.coreboot.org/25985
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |