The branch stable/12 has been updated by brooks:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7baf7a45385962d06cd2a2213109b910d40a7936

commit 7baf7a45385962d06cd2a2213109b910d40a7936
Author:     Brooks Davis <[email protected]>
AuthorDate: 2021-01-25 22:16:27 +0000
Commit:     Brooks Davis <[email protected]>
CommitDate: 2021-01-25 22:16:27 +0000

    ndis: Per user request, delay removal to 14
    
    We will remove ndis shortly after the 13 branch.
    
    Reviewed by:    emaste
    Differential Revision:  https://reviews.freebsd.org/D28049
    
    (cherry picked from commit d7a7d6a7c3c6a9b6e03e4739df6801e2a0a296e9)
---
 share/man/man4/ndis.4         | 2 +-
 sys/dev/if_ndis/if_ndis_pci.c | 2 +-
 sys/dev/if_ndis/if_ndis_usb.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/share/man/man4/ndis.4 b/share/man/man4/ndis.4
index 4f0b0ab2ed22..1d36d5622b4b 100644
--- a/share/man/man4/ndis.4
+++ b/share/man/man4/ndis.4
@@ -122,7 +122,7 @@ which can be configured via the
 command.
 .Sh DEPRECATION NOTICE
 This driver is scheduled for removal prior to the release of
-.Fx 13.0
+.Fx 14.0
 .Sh DIAGNOSTICS
 .Bl -diag
 .It "ndis%d: watchdog timeout"
diff --git a/sys/dev/if_ndis/if_ndis_pci.c b/sys/dev/if_ndis/if_ndis_pci.c
index ba83652d1289..cf1685a920ea 100644
--- a/sys/dev/if_ndis/if_ndis_pci.c
+++ b/sys/dev/if_ndis/if_ndis_pci.c
@@ -338,7 +338,7 @@ ndis_attach_pci(dev)
 
        error = ndis_attach(dev);
        if (error == 0)
-               gone_in_dev(dev, 13, "ndis removed");
+               gone_in_dev(dev, 14, "ndis removed");
 
 
 fail:
diff --git a/sys/dev/if_ndis/if_ndis_usb.c b/sys/dev/if_ndis/if_ndis_usb.c
index 40fa32c4b93e..b259db894911 100644
--- a/sys/dev/if_ndis/if_ndis_usb.c
+++ b/sys/dev/if_ndis/if_ndis_usb.c
@@ -198,7 +198,7 @@ ndisusb_attach(device_t self)
        if (ndis_attach(self) != 0)
                return (ENXIO);
 
-       gone_in_dev(self, 13, "ndis removed");
+       gone_in_dev(self, 14, "ndis removed");
 
        return (0);
 }
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to