mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
GC never enabled support for SIOCGADDRROM and SIOCGCHIPID.
When de(4) was imported in 1997 the world was not ready for these ioctls. In over 20 years that hasn't changed so it seems safe to assume their time will never come. Reviewed by: imp, jhb Approved by: CheriBSD MFC after: 1 week Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14889
This commit is contained in:
parent
6068486258
commit
ac28199cca
2 changed files with 0 additions and 17 deletions
|
|
@ -4266,18 +4266,6 @@ tulip_ifioctl(struct ifnet * ifp, u_long cmd, caddr_t data)
|
|||
break;
|
||||
}
|
||||
|
||||
#ifdef SIOCGADDRROM
|
||||
case SIOCGADDRROM: {
|
||||
error = copyout(sc->tulip_rombuf, ifr->ifr_data, sizeof(sc->tulip_rombuf));
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
#ifdef SIOCGCHIPID
|
||||
case SIOCGCHIPID: {
|
||||
ifr->ifr_metric = (int) sc->tulip_chipid;
|
||||
break;
|
||||
}
|
||||
#endif
|
||||
default: {
|
||||
error = ether_ioctl(ifp, cmd, data);
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -876,11 +876,6 @@ static const struct {
|
|||
#define TULIP_TXMAP_POSTSYNC(ri, di) \
|
||||
_TULIP_MAP_SYNC(ri, di, BUS_DMASYNC_POSTWRITE)
|
||||
|
||||
#ifdef notyet
|
||||
#define SIOCGADDRROM _IOW('i', 240, struct ifreq) /* get 128 bytes of ROM */
|
||||
#define SIOCGCHIPID _IOWR('i', 241, struct ifreq) /* get chipid */
|
||||
#endif
|
||||
|
||||
#if defined(TULIP_HDR_DATA)
|
||||
static tulip_softc_t *tulips[TULIP_MAX_DEVICES];
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue