diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 21:26:46 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2022-05-09 21:26:46 +0000 |
| commit | 36f54203a45202716648f91dd4ba92eba816449c (patch) | |
| tree | 63fa6d785bd85d68f5bce9963ac70a5436b2dca6 /sys/dev/dwwdt | |
| parent | cee4d6883009b39e51781198a827e8a439835411 (diff) | |
Diffstat (limited to 'sys/dev/dwwdt')
| -rw-r--r-- | sys/dev/dwwdt/dwwdt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/dwwdt/dwwdt.c b/sys/dev/dwwdt/dwwdt.c index 5cc20c3c9d2f..ad3662ced2d5 100644 --- a/sys/dev/dwwdt/dwwdt.c +++ b/sys/dev/dwwdt/dwwdt.c @@ -84,8 +84,6 @@ struct dwwdt_softc { } sc_status; }; -static devclass_t dwwdt_devclass; - static struct ofw_compat_data compat_data[] = { { "snps,dw-wdt", 1 }, { NULL, 0 } @@ -370,6 +368,6 @@ static driver_t dwwdt_driver = { sizeof(struct dwwdt_softc), }; -DRIVER_MODULE(dwwdt, simplebus, dwwdt_driver, dwwdt_devclass, NULL, NULL); +DRIVER_MODULE(dwwdt, simplebus, dwwdt_driver, NULL, NULL); MODULE_VERSION(dwwdt, 1); OFWBUS_PNP_INFO(compat_data); |
