git: dbd7bb7c89a8 - main - arm64/rk_dwc3: Remove RK3328 support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 16 Nov 2022 10:58:39 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=dbd7bb7c89a8337d53cf3e8dc53d4266baad3ca9 commit dbd7bb7c89a8337d53cf3e8dc53d4266baad3ca9 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2022-11-15 10:21:19 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2022-11-16 10:58:31 +0000 arm64/rk_dwc3: Remove RK3328 support The RK3328 dts doesn't have the glue node so we need the dwc3 driver to attach directly. Differential Revision: https://reviews.freebsd.org/D37396 Sponsored by: Beckhoff Automation GmbH & Co. KG --- sys/arm64/rockchip/rk_dwc3.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sys/arm64/rockchip/rk_dwc3.c b/sys/arm64/rockchip/rk_dwc3.c index 8582f7a86999..645a1cffbd95 100644 --- a/sys/arm64/rockchip/rk_dwc3.c +++ b/sys/arm64/rockchip/rk_dwc3.c @@ -54,12 +54,10 @@ __FBSDID("$FreeBSD$"); #include <dev/extres/syscon/syscon.h> enum rk_dwc3_type { - RK3328 = 1, - RK3399, + RK3399 = 1, }; static struct ofw_compat_data compat_data[] = { - { "rockchip,rk3328-dwc3", RK3328 }, { "rockchip,rk3399-dwc3", RK3399 }, { NULL, 0 } };