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
This commit is contained in:
Emmanuel Vadot 2022-11-15 11:21:19 +01:00
parent 0a5f342aa5
commit dbd7bb7c89

View file

@ -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 }
};