mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
Remove the static major assignment for ips(4).
Submitted by: phk, inspired by others.
This commit is contained in:
parent
a90d2f4c6f
commit
a7c4d6e18c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125833
@ -160,7 +160,6 @@
|
||||
172 mided LSI MegaRAID IDE (disk device)
|
||||
173 *devctl Devd control device <imp>
|
||||
174 pciwd Berkshire Watchdog PCI <marcel@progressix.com>
|
||||
175 ips IBM/Adaptec ServeRAID (control device)
|
||||
180 nvidia NVIDIA (nvidiaN/nvidiactl) <mdodd>
|
||||
181 casm HP/Compaq ProLiant Advanced Server Management <peter>
|
||||
183 *smapi SMAPI BIOS interface <mdodd>
|
||||
|
@ -37,13 +37,11 @@ static d_open_t ips_open;
|
||||
static d_close_t ips_close;
|
||||
static d_ioctl_t ips_ioctl;
|
||||
|
||||
#define IPS_CDEV_MAJOR 175
|
||||
static struct cdevsw ips_cdevsw = {
|
||||
.d_open = ips_open,
|
||||
.d_close = ips_close,
|
||||
.d_ioctl = ips_ioctl,
|
||||
.d_name = "ips",
|
||||
.d_maj = IPS_CDEV_MAJOR,
|
||||
};
|
||||
|
||||
static const char* ips_adapter_name[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user