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>
This commit is contained in:
Jonathan Neuschäfer 2018-04-17 13:06:49 +02:00 committed by Felix Held
parent 20767baf0f
commit 5be7bb3fa6
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}