summaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data/spi-s3c64xx.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2022-01-19 00:09:15 +0100
committerMark Brown <broonie@kernel.org>2022-01-24 13:37:33 +0000
commita45cf3cc72dd9cfde9db8af32cdf9c431f53f9bc (patch)
tree1dada19ec740660780a19d85c073173dd365eeaf /include/linux/platform_data/spi-s3c64xx.h
parent3b5529ae7f3578da633e8ae2ec0715a55a248f9f (diff)
downloadlinux-a45cf3cc72dd9cfde9db8af32cdf9c431f53f9bc.tar.gz
linux-a45cf3cc72dd9cfde9db8af32cdf9c431f53f9bc.tar.bz2
linux-a45cf3cc72dd9cfde9db8af32cdf9c431f53f9bc.zip
spi: s3c64xx: Convert to use GPIO descriptors
Convert the S3C64xx SPI host to use GPIO descriptors. Provide GPIO descriptor tables for the one user with CS 0 and 1. Cc: linux-samsung-soc@vger.kernel.org Cc: Sylwester Nawrocki <snawrocki@kernel.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20220118230915.157797-3-linus.walleij@linaro.org Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/platform_data/spi-s3c64xx.h')
-rw-r--r--include/linux/platform_data/spi-s3c64xx.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/platform_data/spi-s3c64xx.h b/include/linux/platform_data/spi-s3c64xx.h
index 10890a4b55b9..5df1ace6d2c9 100644
--- a/include/linux/platform_data/spi-s3c64xx.h
+++ b/include/linux/platform_data/spi-s3c64xx.h
@@ -16,7 +16,6 @@ struct platform_device;
* struct s3c64xx_spi_csinfo - ChipSelect description
* @fb_delay: Slave specific feedback delay.
* Refer to FB_CLK_SEL register definition in SPI chapter.
- * @line: Custom 'identity' of the CS line.
*
* This is per SPI-Slave Chipselect information.
* Allocate and initialize one in machine init code and make the
@@ -24,7 +23,6 @@ struct platform_device;
*/
struct s3c64xx_spi_csinfo {
u8 fb_delay;
- unsigned line;
};
/**