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

Configure Feed

Select the types of activity you want to include in your feed.

usb: ohci: s3c2410: Drop support for S3C2410 systems

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.

The driver (named s3c2410) is still being used via platform code for
S3C64xx platforms.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Link: https://lore.kernel.org/r/20250831122222.50332-3-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Krzysztof Kozlowski and committed by
Greg Kroah-Hartman
dc60a1cd ed6f727c

-8
-8
drivers/usb/host/ohci-s3c2410.c
··· 448 448 .resume = ohci_hcd_s3c2410_drv_resume, 449 449 }; 450 450 451 - static const struct of_device_id ohci_hcd_s3c2410_dt_ids[] = { 452 - { .compatible = "samsung,s3c2410-ohci" }, 453 - { /* sentinel */ } 454 - }; 455 - 456 - MODULE_DEVICE_TABLE(of, ohci_hcd_s3c2410_dt_ids); 457 - 458 451 static struct platform_driver ohci_hcd_s3c2410_driver = { 459 452 .probe = ohci_hcd_s3c2410_probe, 460 453 .remove = ohci_hcd_s3c2410_remove, ··· 455 462 .driver = { 456 463 .name = "s3c2410-ohci", 457 464 .pm = &ohci_hcd_s3c2410_pm_ops, 458 - .of_match_table = ohci_hcd_s3c2410_dt_ids, 459 465 }, 460 466 }; 461 467