Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108368116
D26138.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D26138.diff
View Options
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);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jan 25, 5:23 AM (20 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
16126170
Default Alt Text
D26138.diff (2 KB)
Attached To
Mode
D26138: Warn for the non pccard attachments
Attached
Detach File
Event Timeline
Log In to Comment