From bae71ad33238249edd62923529e2ce758e15bbc5 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 10 May 2022 10:21:39 -0700 Subject: [PATCH] dwc_hdmi: Remove unused devclass argument to DRIVER_MODULE. --- sys/dev/hdmi/dwc_hdmi_fdt.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sys/dev/hdmi/dwc_hdmi_fdt.c b/sys/dev/hdmi/dwc_hdmi_fdt.c index 2bf717082f7..4486e83f1a7 100644 --- a/sys/dev/hdmi/dwc_hdmi_fdt.c +++ b/sys/dev/hdmi/dwc_hdmi_fdt.c @@ -196,7 +196,4 @@ static driver_t dwc_hdmi_fdt_driver = { sizeof(struct dwc_hdmi_fdt_softc) }; -static devclass_t dwc_hdmi_fdt_devclass; - -DRIVER_MODULE(dwc_hdmi_fdt, simplebus, dwc_hdmi_fdt_driver, - dwc_hdmi_fdt_devclass, 0, 0); +DRIVER_MODULE(dwc_hdmi_fdt, simplebus, dwc_hdmi_fdt_driver, 0, 0);