Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

spi: s3c64xx: Drop S3C2443

Samsung S3C24xx family of SoCs was removed the Linux kernel in the
commit 61b7f8920b17 ("ARM: s3c: remove all s3c24xx support"), in January
2023. There are no in-kernel users of remaining S3C24xx compatibles or
platform data ID.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Message-ID: <20250830132605.311115-3-krzysztof.kozlowski@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Mark Brown
6248c95e 73e4e708

-16
-16
drivers/spi/spi-s3c64xx.c
··· 1506 1506 s3c64xx_spi_runtime_resume, NULL) 1507 1507 }; 1508 1508 1509 - static const struct s3c64xx_spi_port_config s3c2443_spi_port_config = { 1510 - /* fifo_lvl_mask is deprecated. Use {rx, tx}_fifomask instead. */ 1511 - .fifo_lvl_mask = { 0x7f }, 1512 - /* rx_lvl_offset is deprecated. Use {rx, tx}_fifomask instead. */ 1513 - .rx_lvl_offset = 13, 1514 - .tx_st_done = 21, 1515 - .clk_div = 2, 1516 - .high_speed = true, 1517 - }; 1518 - 1519 1509 static const struct s3c64xx_spi_port_config s3c6410_spi_port_config = { 1520 1510 /* fifo_lvl_mask is deprecated. Use {rx, tx}_fifomask instead. */ 1521 1511 .fifo_lvl_mask = { 0x7f, 0x7F }, ··· 1617 1627 1618 1628 static const struct platform_device_id s3c64xx_spi_driver_ids[] = { 1619 1629 { 1620 - .name = "s3c2443-spi", 1621 - .driver_data = (kernel_ulong_t)&s3c2443_spi_port_config, 1622 - }, { 1623 1630 .name = "s3c6410-spi", 1624 1631 .driver_data = (kernel_ulong_t)&s3c6410_spi_port_config, 1625 1632 }, ··· 1627 1640 static const struct of_device_id s3c64xx_spi_dt_match[] = { 1628 1641 { .compatible = "google,gs101-spi", 1629 1642 .data = &gs101_spi_port_config, 1630 - }, 1631 - { .compatible = "samsung,s3c2443-spi", 1632 - .data = &s3c2443_spi_port_config, 1633 1643 }, 1634 1644 { .compatible = "samsung,s3c6410-spi", 1635 1645 .data = &s3c6410_spi_port_config,