projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d0e2160
)
acpi: strupr() isn't used anywhere, so remove it.
author
Sascha Wildner <saw@online.de>
Sat, 26 May 2012 11:40:43 +0000 (13:40 +0200)
committer
Sascha Wildner <saw@online.de>
Sat, 26 May 2012 11:40:43 +0000 (13:40 +0200)
sys/dev/acpica5/acdragonfly.h
patch
|
blob
|
blame
|
history
diff --git
a/sys/dev/acpica5/acdragonfly.h
b/sys/dev/acpica5/acdragonfly.h
index
179faa1
..
0d1045b
100644
(file)
--- a/
sys/dev/acpica5/acdragonfly.h
+++ b/
sys/dev/acpica5/acdragonfly.h
@@
-180,18
+180,6
@@
struct acpicache;
/* Always use DragonFly code over our local versions */
#define ACPI_USE_SYSTEM_CLIBRARY
-/* DragonFly doesn't have strupr, should be fixed. (move to libkern) */
-static __inline char *
-strupr(char *str)
-{
- char *c = str;
- while(*c) {
- *c = toupper(*c);
- c++;
- }
- return(str);
-}
-
#ifdef _KERNEL
/* Or strstr (used in debugging mode, also move to libkern) */