Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F108295825
D48412.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D48412.diff
View Options
diff --git a/stand/kshim/bsd_kernel.c b/stand/kshim/bsd_kernel.c
--- a/stand/kshim/bsd_kernel.c
+++ b/stand/kshim/bsd_kernel.c
@@ -557,27 +557,6 @@
static TAILQ_HEAD(, devclass) devclasses =
TAILQ_HEAD_INITIALIZER(devclasses);
-static uint8_t
-devclass_equal(const char *a, const char *b)
-{
- char ta, tb;
-
- if (a == b)
- return (1);
-
- while (1) {
- ta = *a;
- tb = *b;
- if (ta != tb)
- return (0);
- if (ta == 0)
- break;
- a++;
- b++;
- }
- return (1);
-}
-
int
bus_generic_resume(device_t dev)
{
@@ -906,7 +885,7 @@
mtod = dev->dev_module->driver->methods;
while (mtod->func != NULL) {
- if (devclass_equal(mtod->desc, what)) {
+ if (strcmp(mtod->desc, what) == 0) {
return (mtod->func);
}
mtod++;
@@ -959,7 +938,7 @@
bus_name_parent = device_get_name(device_get_parent(dev));
TAILQ_FOREACH(mod, &module_head, entry) {
- if (!devclass_equal(mod->bus_name, bus_name_parent))
+ if (strcmp(mod->bus_name, bus_name_parent) != 0)
continue;
dc = devclass_find(mod->mod_name);
@@ -1092,7 +1071,7 @@
devclass_t dc;
TAILQ_FOREACH(dc, &devclasses, link) {
- if (devclass_equal(dc->name, classname))
+ if (strcmp(dc->name, classname) == 0)
return (dc);
}
return (NULL);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jan 24, 3:26 PM (20 h, 24 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15749559
Default Alt Text
D48412.diff (1 KB)
Attached To
Mode
D48412: stand/kshim: Replace devclass_equal with calls to strcmp
Attached
Detach File
Event Timeline
Log In to Comment