]> www.infradead.org Git - users/hch/misc.git/commitdiff
dt-bindings: usb: s3c2410-usb: Drop entirely S3C2410
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Sun, 31 Aug 2025 12:22:24 +0000 (14:22 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 6 Sep 2025 13:22:51 +0000 (15:22 +0200)
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.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
Link: https://lore.kernel.org/r/20250831122222.50332-4-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/devicetree/bindings/usb/s3c2410-usb.txt [deleted file]

diff --git a/Documentation/devicetree/bindings/usb/s3c2410-usb.txt b/Documentation/devicetree/bindings/usb/s3c2410-usb.txt
deleted file mode 100644 (file)
index 26c85af..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-Samsung S3C2410 and compatible SoC USB controller
-
-OHCI
-
-Required properties:
- - compatible: should be "samsung,s3c2410-ohci" for USB host controller
- - reg: address and length of the controller memory mapped region
- - interrupts: interrupt number for the USB OHCI controller
- - clocks: Should reference the bus and host clocks
- - clock-names: Should contain two strings
-               "usb-bus-host" for the USB bus clock
-               "usb-host" for the USB host clock
-
-Example:
-
-usb0: ohci@49000000 {
-       compatible = "samsung,s3c2410-ohci";
-       reg = <0x49000000 0x100>;
-       interrupts = <0 0 26 3>;
-       clocks = <&clocks UCLK>, <&clocks HCLK_USBH>;
-       clock-names = "usb-bus-host", "usb-host";
-};