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 /include/pch.h | |
parent | d02be99e6774b99c27b7d4304865c7f45e1ac4b4 (diff) | |
download | u-boot-3e389d8ba666c5c2ad42021c2087630c1e412954.zip u-boot-3e389d8ba666c5c2ad42021c2087630c1e412954.tar.gz u-boot-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 'include/pch.h')
-rw-r--r-- | include/pch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/pch.h b/include/pch.h index f3899d8..c04cfa3 100644 --- a/include/pch.h +++ b/include/pch.h @@ -15,13 +15,13 @@ /* Operations for the Platform Controller Hub */ struct pch_ops { /** - * get_sbase() - get the address of SPI base + * get_spi_base() - get the address of SPI base * * @dev: PCH device to check * @sbasep: Returns address of SPI base if available, else 0 * @return 0 if OK, -ve on error (e.g. there is no SPI base) */ - int (*get_sbase)(struct udevice *dev, ulong *sbasep); + int (*get_spi_base)(struct udevice *dev, ulong *sbasep); /** * set_spi_protect() - set whether SPI flash is protected or not @@ -37,13 +37,13 @@ struct pch_ops { #define pch_get_ops(dev) ((struct pch_ops *)(dev)->driver->ops) /** - * pch_get_sbase() - get the address of SPI base + * pch_get_spi_base() - get the address of SPI base * * @dev: PCH device to check * @sbasep: Returns address of SPI base if available, else 0 * @return 0 if OK, -ve on error (e.g. there is no SPI base) */ -int pch_get_sbase(struct udevice *dev, ulong *sbasep); +int pch_get_spi_base(struct udevice *dev, ulong *sbasep); /** * set_spi_protect() - set whether SPI flash is protected or not |