From 5be7bb3fa6e7fed89afba7fa9bff85a42e569eb0 Mon Sep 17 00:00:00 2001 From: Jonathan Neuschäfer Date: Tue, 17 Apr 2018 13:06:49 +0200 Subject: util/intelmetool: Be explicit about *kernel* cmdline arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduce the potential for confusion. Change-Id: I1d5df9acb30948f786f4ced895bbaeed80153fdb Signed-off-by: Jonathan Neuschäfer Reviewed-on: https://review.coreboot.org/25699 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Ronald G. Minnich --- util/intelmetool/me.c | 2 +- util/intelmetool/rcba.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'util') diff --git a/util/intelmetool/me.c b/util/intelmetool/me.c index f14f4cd623..4867bbcbf7 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 ee43e65ce0..6a09af687c 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; } -- cgit v1.2.3