diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-06-25 12:58:57 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@hera.kernel.org> | 2006-06-27 19:28:43 -0400 |
commit | 67a061a191017f984a1ef0ff73ae988b9b15f6d3 (patch) | |
tree | f7f84d047dbeafe40711386bd6a8a4ae50bd80de /include | |
parent | ec1fdc24c2ae012b078ba0187ceef208e08a3aec (diff) |
[PARISC] Add os_id_to_string helper
Add a helper to asm/pdc.h to translate OS_ID values to strings
and use it in the pdc_stable driver.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-parisc/pdc.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-parisc/pdc.h b/include/asm-parisc/pdc.h index 33bff615d6e1..7a21f106ade6 100644 --- a/include/asm-parisc/pdc.h +++ b/include/asm-parisc/pdc.h | |||
@@ -284,6 +284,19 @@ typedef struct { | |||
284 | #define OS_ID_NOVEL 5 /* NOVELL OS */ | 284 | #define OS_ID_NOVEL 5 /* NOVELL OS */ |
285 | #define OS_ID_LINUX 6 /* Linux */ | 285 | #define OS_ID_LINUX 6 /* Linux */ |
286 | 286 | ||
287 | static inline char * os_id_to_string(u16 os_id) { | ||
288 | switch(os_id) { | ||
289 | case OS_ID_NONE: return "No OS"; | ||
290 | case OS_ID_HPUX: return "HP-UX"; | ||
291 | case OS_ID_MPEXL: return "MPE-iX"; | ||
292 | case OS_ID_OSF: return "OSF"; | ||
293 | case OS_ID_HPRT: return "HP-RT"; | ||
294 | case OS_ID_NOVEL: return "Novell Netware"; | ||
295 | case OS_ID_LINUX: return "Linux"; | ||
296 | default: return "Unknown"; | ||
297 | } | ||
298 | } | ||
299 | |||
287 | 300 | ||
288 | /* constants for PDC_CHASSIS */ | 301 | /* constants for PDC_CHASSIS */ |
289 | #define OSTAT_OFF 0 | 302 | #define OSTAT_OFF 0 |