Index: head/sys/dev/an/if_an_isa.c =================================================================== --- head/sys/dev/an/if_an_isa.c +++ head/sys/dev/an/if_an_isa.c @@ -127,6 +127,7 @@ an_release_resources(dev); return (error); } + gone_in_dev(dev, 13, "pccard removed, an doesn't support modern crypto"); return (0); } Index: head/sys/dev/an/if_an_pccard.c =================================================================== --- head/sys/dev/an/if_an_pccard.c +++ head/sys/dev/an/if_an_pccard.c @@ -157,6 +157,6 @@ if (error) an_release_resources(dev); else - gone_in_dev(dev, 13, "pccard removed"); + gone_in_dev(dev, 13, "pccard removed, an doesn't support modern crypto"); return (error); } Index: head/sys/dev/an/if_an_pci.c =================================================================== --- head/sys/dev/an/if_an_pci.c +++ head/sys/dev/an/if_an_pci.c @@ -230,7 +230,8 @@ NULL, an_intr, sc, &sc->irq_handle); if (error) device_printf(dev, "couldn't setup interrupt\n"); - + else + gone_in_dev(dev, 13, "pccard removed, an doesn't support modern crypto"); fail: if (error) an_release_resources(dev); Index: head/sys/dev/wi/if_wi_macio.c =================================================================== --- head/sys/dev/wi/if_wi_macio.c +++ head/sys/dev/wi/if_wi_macio.c @@ -142,6 +142,8 @@ error = wi_attach(dev); if (error != 0) wi_free(dev); + else + gone_in_dev(dev, 13, "pccard removed, wi doesn't support modern crypto"); } return error; } Index: head/sys/dev/wi/if_wi_pccard.c =================================================================== --- head/sys/dev/wi/if_wi_pccard.c +++ head/sys/dev/wi/if_wi_pccard.c @@ -200,7 +200,7 @@ error = wi_attach(dev); if (error != 0) wi_free(dev); - gone_in_dev(dev, 13, "pccard removed"); + gone_in_dev(dev, 13, "pccard removed, wi doesn't support modern crypto"); } return error; } Index: head/sys/dev/wi/if_wi_pci.c =================================================================== --- head/sys/dev/wi/if_wi_pci.c +++ head/sys/dev/wi/if_wi_pci.c @@ -233,6 +233,8 @@ error = wi_attach(dev); if (error != 0) wi_free(dev); + else + gone_in_dev(dev, 13, "pccard removed, wi doesn't support modern crypto"); return (error); }