diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2016-01-29 14:28:43 -0800 |
---|---|---|
committer | Leroy P Leahy <leroy.p.leahy@intel.com> | 2016-01-31 20:51:29 +0100 |
commit | e0918bbc68041bd474b9075617b66974fa72025a (patch) | |
tree | 5d8c867c449aa99a4737db4bd356ebaf2a8a9c5a /src/soc | |
parent | 2387220c1ba147aaeb9a888778f2faa6f4daf260 (diff) | |
download | coreboot-e0918bbc68041bd474b9075617b66974fa72025a.tar.xz |
drivers/intel/fsp1_1: Fix spelling error in API and copyright
Change granluarity to granularity.
Change wacbmem_entryanty to warranty.
Update copyright dates.
TEST=None
Change-Id: Ib7775cb33616751760919a5850777dc6f77a6be9
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: https://review.coreboot.org/13528
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/braswell/memmap.c | 6 | ||||
-rw-r--r-- | src/soc/intel/skylake/memmap.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/braswell/memmap.c b/src/soc/intel/braswell/memmap.c index 9f5d328b95..19189f948e 100644 --- a/src/soc/intel/braswell/memmap.c +++ b/src/soc/intel/braswell/memmap.c @@ -2,14 +2,14 @@ * This file is part of the coreboot project. * * Copyright (C) 2013 Google, Inc. - * Copyright (C) 2015 Intel Corp. + * Copyright (C) 2015-2016 Intel Corp. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied wacbmem_entryanty of + * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ @@ -36,7 +36,7 @@ void smm_region(void **start, size_t *size) *size = smm_region_size(); } -size_t mmap_region_granluarity(void) +size_t mmap_region_granularity(void) { /* Align to TSEG size when SMM is in use, and 8MiB by default */ return IS_ENABLED(CONFIG_HAVE_SMI_HANDLER) ? smm_region_size() diff --git a/src/soc/intel/skylake/memmap.c b/src/soc/intel/skylake/memmap.c index a0211c74db..31739bcc55 100644 --- a/src/soc/intel/skylake/memmap.c +++ b/src/soc/intel/skylake/memmap.c @@ -2,7 +2,7 @@ * This file is part of the coreboot project. * * Copyright (C) 2014 Google Inc. - * Copyright (C) 2015 Intel Corporation. + * Copyright (C) 2015-2016 Intel Corporation. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,7 +27,7 @@ #include <soc/systemagent.h> #include <stdlib.h> -size_t mmap_region_granluarity(void) +size_t mmap_region_granularity(void) { if (IS_ENABLED(CONFIG_HAVE_SMI_HANDLER)) /* Align to TSEG size when SMM is in use */ |