diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2018-04-17 13:06:49 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-04-28 15:28:52 +0000 |
commit | 5be7bb3fa6e7fed89afba7fa9bff85a42e569eb0 (patch) | |
tree | 74ed48a092745a4b3adfc5f9731e3e9eb2fc33e0 | |
parent | 20767baf0f5a055245c7220f42c2b0e954bf8f08 (diff) | |
download | coreboot-5be7bb3fa6e7fed89afba7fa9bff85a42e569eb0.tar.gz coreboot-5be7bb3fa6e7fed89afba7fa9bff85a42e569eb0.tar.bz2 coreboot-5be7bb3fa6e7fed89afba7fa9bff85a42e569eb0.zip |
util/intelmetool: Be explicit about *kernel* cmdline arguments
Reduce the potential for confusion.
Change-Id: I1d5df9acb30948f786f4ced895bbaeed80153fdb
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-on: https://review.coreboot.org/25699
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
-rw-r--r-- | util/intelmetool/me.c | 2 | ||||
-rw-r--r-- | util/intelmetool/rcba.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/util/intelmetool/me.c b/util/intelmetool/me.c index f14f4cd623a0..4867bbcbf7cd 100644 --- a/util/intelmetool/me.c +++ b/util/intelmetool/me.c @@ -583,7 +583,7 @@ uint32_t intel_mei_setup(struct pci_dev *dev) mei_mmap += mei_base_address - pagerounded; if (mei_mmap == NULL) { printf("Could not map ME setup memory.\n" - "Do you have cmdline argument 'iomem=relaxed' set ?\n"); + "Do you have kernel cmdline argument 'iomem=relaxed' set ?\n"); return 1; } diff --git a/util/intelmetool/rcba.c b/util/intelmetool/rcba.c index ee43e65ce0a2..6a09af687c7b 100644 --- a/util/intelmetool/rcba.c +++ b/util/intelmetool/rcba.c @@ -69,7 +69,7 @@ int write_rcba32(uint32_t addr, uint32_t val) rcba = map_physical((off_t)rcba_phys, size); if (rcba == NULL) { printf("Could not map RCBA\n" - "Do you have cmdline argument 'iomem=relaxed' set ?\n"); + "Do you have kernel cmdline argument 'iomem=relaxed' set ?\n"); return 1; } *(uint32_t *)(rcba + addr) = val; @@ -95,7 +95,7 @@ int read_rcba32(uint32_t addr, uint32_t *val) rcba = map_physical((off_t)rcba_phys, size); if (rcba == NULL) { printf("Could not map RCBA\n" - "Do you have cmdline argument 'iomem=relaxed' set ?\n"); + "Do you have kernel cmdline argument 'iomem=relaxed' set ?\n"); return 1; } |