ntb: Remove unused devclass arguments to DRIVER_MODULE.

This commit is contained in:
John Baldwin 2022-05-09 12:22:03 -07:00
parent d83185d932
commit 9940f7a7f6
9 changed files with 6 additions and 15 deletions

View File

@ -505,10 +505,8 @@ static device_method_t ntb_net_methods[] = {
DEVMETHOD_END
};
devclass_t ntb_net_devclass;
static DEFINE_CLASS_0(ntb, ntb_net_driver, ntb_net_methods,
sizeof(struct ntb_net_ctx));
DRIVER_MODULE(if_ntb, ntb_transport, ntb_net_driver, ntb_net_devclass,
NULL, NULL);
DRIVER_MODULE(if_ntb, ntb_transport, ntb_net_driver, NULL, NULL);
MODULE_DEPEND(if_ntb, ntb_transport, 1, 1, 1);
MODULE_VERSION(if_ntb, 1);

View File

@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$");
#include "ntb.h"
devclass_t ntb_hw_devclass;
SYSCTL_NODE(_hw, OID_AUTO, ntb, CTLFLAG_RW | CTLFLAG_MPSAFE, 0,
"NTB sysctls");

View File

@ -31,7 +31,6 @@
#include "ntb_if.h"
extern devclass_t ntb_hw_devclass;
SYSCTL_DECL(_hw_ntb);
int ntb_register_device(device_t ntb);

View File

@ -1310,7 +1310,7 @@ static device_method_t ntb_amd_methods[] = {
static DEFINE_CLASS_0(ntb_hw, ntb_amd_driver, ntb_amd_methods,
sizeof(struct amd_ntb_softc));
DRIVER_MODULE(ntb_hw_amd, pci, ntb_amd_driver, ntb_hw_devclass, NULL, NULL);
DRIVER_MODULE(ntb_hw_amd, pci, ntb_amd_driver, NULL, NULL);
MODULE_DEPEND(ntb_hw_amd, ntb, 1, 1, 1);
MODULE_VERSION(ntb_hw_amd, 1);
PCI_PNP_INFO(amd_ntb_devs);

View File

@ -3511,7 +3511,7 @@ static device_method_t ntb_intel_methods[] = {
static DEFINE_CLASS_0(ntb_hw, ntb_intel_driver, ntb_intel_methods,
sizeof(struct ntb_softc));
DRIVER_MODULE(ntb_hw_intel, pci, ntb_intel_driver, ntb_hw_devclass, NULL, NULL);
DRIVER_MODULE(ntb_hw_intel, pci, ntb_intel_driver, NULL, NULL);
MODULE_DEPEND(ntb_hw_intel, ntb, 1, 1, 1);
MODULE_VERSION(ntb_hw_intel, 1);
MODULE_PNP_INFO("W32:vendor/device;D:#", pci, ntb_hw_intel, pci_ids,

View File

@ -1091,6 +1091,6 @@ static device_method_t ntb_plx_methods[] = {
static DEFINE_CLASS_0(ntb_hw, ntb_plx_driver, ntb_plx_methods,
sizeof(struct ntb_plx_softc));
DRIVER_MODULE(ntb_hw_plx, pci, ntb_plx_driver, ntb_hw_devclass, NULL, NULL);
DRIVER_MODULE(ntb_hw_plx, pci, ntb_plx_driver, NULL, NULL);
MODULE_DEPEND(ntb_hw_plx, ntb, 1, 1, 1);
MODULE_VERSION(ntb_hw_plx, 1);

View File

@ -1689,10 +1689,8 @@ static device_method_t ntb_transport_methods[] = {
DEVMETHOD_END
};
devclass_t ntb_transport_devclass;
static DEFINE_CLASS_0(ntb_transport, ntb_transport_driver,
ntb_transport_methods, sizeof(struct ntb_transport_ctx));
DRIVER_MODULE(ntb_transport, ntb_hw, ntb_transport_driver,
ntb_transport_devclass, NULL, NULL);
DRIVER_MODULE(ntb_transport, ntb_hw, ntb_transport_driver, NULL, NULL);
MODULE_DEPEND(ntb_transport, ntb, 1, 1, 1);
MODULE_VERSION(ntb_transport, 1);

View File

@ -28,8 +28,6 @@
struct ntb_transport_qp;
extern devclass_t ntb_transport_devclass;
enum ntb_link_event {
NTB_LINK_DOWN = 0,
NTB_LINK_UP,

View File

@ -1487,9 +1487,8 @@ static device_method_t ntb_tool_methods[] = {
DEVMETHOD_END
};
devclass_t ntb_tool_devclass;
static DEFINE_CLASS_0(ntb_tool, ntb_tool_driver, ntb_tool_methods,
sizeof(struct tool_ctx));
DRIVER_MODULE(ntb_tool, ntb_hw, ntb_tool_driver, ntb_tool_devclass, NULL, NULL);
DRIVER_MODULE(ntb_tool, ntb_hw, ntb_tool_driver, NULL, NULL);
MODULE_DEPEND(ntb_tool, ntb, 1, 1, 1);
MODULE_VERSION(ntb_tool, 1.0);