diff options
author | Kukjin Kim <kgene.kim@samsung.com> | 2014-07-01 18:52:31 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-07-12 18:35:13 -0400 |
commit | f34b89bf836ed83b8afb554b0879269d545c8754 (patch) | |
tree | b2b1d38ed6b7557df12f37ba95065cb3b605b0f5 | |
parent | 0d551c3f0c0f23b9fe754b84d163d29b6b70f04c (diff) |
spi: s3c64xx: remove s5pc100 related spi codes
This patch removes sp5c100 related spi because of no more support
s5pc100 SoC.
Cc: Mark Brown <broonie@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r-- | drivers/spi/spi-s3c64xx.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 4a1890a73667..a771a3a4d321 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c | |||
@@ -1323,13 +1323,6 @@ static struct s3c64xx_spi_port_config s3c6410_spi_port_config = { | |||
1323 | .tx_st_done = 21, | 1323 | .tx_st_done = 21, |
1324 | }; | 1324 | }; |
1325 | 1325 | ||
1326 | static struct s3c64xx_spi_port_config s5pc100_spi_port_config = { | ||
1327 | .fifo_lvl_mask = { 0x7f, 0x7F }, | ||
1328 | .rx_lvl_offset = 13, | ||
1329 | .tx_st_done = 21, | ||
1330 | .high_speed = true, | ||
1331 | }; | ||
1332 | |||
1333 | static struct s3c64xx_spi_port_config s5pv210_spi_port_config = { | 1326 | static struct s3c64xx_spi_port_config s5pv210_spi_port_config = { |
1334 | .fifo_lvl_mask = { 0x1ff, 0x7F }, | 1327 | .fifo_lvl_mask = { 0x1ff, 0x7F }, |
1335 | .rx_lvl_offset = 15, | 1328 | .rx_lvl_offset = 15, |
@@ -1362,9 +1355,6 @@ static struct platform_device_id s3c64xx_spi_driver_ids[] = { | |||
1362 | .name = "s3c6410-spi", | 1355 | .name = "s3c6410-spi", |
1363 | .driver_data = (kernel_ulong_t)&s3c6410_spi_port_config, | 1356 | .driver_data = (kernel_ulong_t)&s3c6410_spi_port_config, |
1364 | }, { | 1357 | }, { |
1365 | .name = "s5pc100-spi", | ||
1366 | .driver_data = (kernel_ulong_t)&s5pc100_spi_port_config, | ||
1367 | }, { | ||
1368 | .name = "s5pv210-spi", | 1358 | .name = "s5pv210-spi", |
1369 | .driver_data = (kernel_ulong_t)&s5pv210_spi_port_config, | 1359 | .driver_data = (kernel_ulong_t)&s5pv210_spi_port_config, |
1370 | }, { | 1360 | }, { |
@@ -1381,9 +1371,6 @@ static const struct of_device_id s3c64xx_spi_dt_match[] = { | |||
1381 | { .compatible = "samsung,s3c6410-spi", | 1371 | { .compatible = "samsung,s3c6410-spi", |
1382 | .data = (void *)&s3c6410_spi_port_config, | 1372 | .data = (void *)&s3c6410_spi_port_config, |
1383 | }, | 1373 | }, |
1384 | { .compatible = "samsung,s5pc100-spi", | ||
1385 | .data = (void *)&s5pc100_spi_port_config, | ||
1386 | }, | ||
1387 | { .compatible = "samsung,s5pv210-spi", | 1374 | { .compatible = "samsung,s5pv210-spi", |
1388 | .data = (void *)&s5pv210_spi_port_config, | 1375 | .data = (void *)&s5pv210_spi_port_config, |
1389 | }, | 1376 | }, |