diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-02-01 01:40:42 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-02-05 12:47:21 +0800 |
commit | 3e389d8ba666c5c2ad42021c2087630c1e412954 (patch) | |
tree | 17f0dd4428249c31e320f3eee4b9552ca9aa34dd /arch/x86/cpu | |
parent | d02be99e6774b99c27b7d4304865c7f45e1ac4b4 (diff) | |
download | u-boot-imx-3e389d8ba666c5c2ad42021c2087630c1e412954.zip u-boot-imx-3e389d8ba666c5c2ad42021c2087630c1e412954.tar.gz u-boot-imx-3e389d8ba666c5c2ad42021c2087630c1e412954.tar.bz2 |
dm: pch: Rename get_sbase op to get_spi_base
Spell out 'sbase' to 'spi_base' so that it looks clearer.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu')
-rw-r--r-- | arch/x86/cpu/ivybridge/bd82x6x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/cpu/ivybridge/bd82x6x.c b/arch/x86/cpu/ivybridge/bd82x6x.c index 16796de..66a8414 100644 --- a/arch/x86/cpu/ivybridge/bd82x6x.c +++ b/arch/x86/cpu/ivybridge/bd82x6x.c @@ -170,7 +170,7 @@ static int bd82x6x_probe(struct udevice *dev) return 0; } -static int bd82x6x_pch_get_sbase(struct udevice *dev, ulong *sbasep) +static int bd82x6x_pch_get_spi_base(struct udevice *dev, ulong *sbasep) { u32 rcba; @@ -201,7 +201,7 @@ static int bd82x6x_set_spi_protect(struct udevice *dev, bool protect) } static const struct pch_ops bd82x6x_pch_ops = { - .get_sbase = bd82x6x_pch_get_sbase, + .get_spi_base = bd82x6x_pch_get_spi_base, .set_spi_protect = bd82x6x_set_spi_protect, }; |