Changeset 371bd7d in mainline for uspace/lib/pci/access.c
- Timestamp:
- 2010-03-27T09:22:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 36a75a2
- Parents:
- cd82bb1 (diff), eaf22d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pci/access.c
rcd82bb1 r371bd7d 12 12 #include <stdlib.h> 13 13 #include <stdarg.h> 14 #include <str ing.h>14 #include <str.h> 15 15 16 16 #include "internal.h" … … 51 51 } 52 52 53 static void pci_generic_error(c har *msg, ...)53 static void pci_generic_error(const char *msg, ...) 54 54 { 55 55 va_list args; … … 62 62 } 63 63 64 static void pci_generic_warn(c har *msg, ...)64 static void pci_generic_warn(const char *msg, ...) 65 65 { 66 66 va_list args; … … 72 72 } 73 73 74 static void pci_generic_debug(c har *msg, ...)74 static void pci_generic_debug(const char *msg, ...) 75 75 { 76 76 va_list args; … … 81 81 } 82 82 83 static void pci_null_debug(c har *msg UNUSED, ...)83 static void pci_null_debug(const char *msg UNUSED, ...) 84 84 { 85 85 }
Note:
See TracChangeset
for help on using the changeset viewer.