Commit c1a7a755 authored by Kyle McMartin's avatar Kyle McMartin Committed by Kyle McMartin

[PARISC] Move os_id_to_string() inside #ifndef __ASSEMBLY__

Assembly files should be protected from os_id_to_string()... Pass me
a brown paper bag, please.
Signed-off-by: default avatarKyle McMartin <kyle@parisc-linux.org>
parent 61c34016
...@@ -284,19 +284,6 @@ typedef struct { ...@@ -284,19 +284,6 @@ typedef struct {
#define OS_ID_NOVEL 5 /* NOVELL OS */ #define OS_ID_NOVEL 5 /* NOVELL OS */
#define OS_ID_LINUX 6 /* Linux */ #define OS_ID_LINUX 6 /* Linux */
static inline char * os_id_to_string(u16 os_id) {
switch(os_id) {
case OS_ID_NONE: return "No OS";
case OS_ID_HPUX: return "HP-UX";
case OS_ID_MPEXL: return "MPE-iX";
case OS_ID_OSF: return "OSF";
case OS_ID_HPRT: return "HP-RT";
case OS_ID_NOVEL: return "Novell Netware";
case OS_ID_LINUX: return "Linux";
default: return "Unknown";
}
}
/* constants for PDC_CHASSIS */ /* constants for PDC_CHASSIS */
#define OSTAT_OFF 0 #define OSTAT_OFF 0
...@@ -789,6 +776,18 @@ int pdc_sti_call(unsigned long func, unsigned long flags, ...@@ -789,6 +776,18 @@ int pdc_sti_call(unsigned long func, unsigned long flags,
extern void pdc_init(void); extern void pdc_init(void);
static inline char * os_id_to_string(u16 os_id) {
switch(os_id) {
case OS_ID_NONE: return "No OS";
case OS_ID_HPUX: return "HP-UX";
case OS_ID_MPEXL: return "MPE-iX";
case OS_ID_OSF: return "OSF";
case OS_ID_HPRT: return "HP-RT";
case OS_ID_NOVEL: return "Novell Netware";
case OS_ID_LINUX: return "Linux";
default: return "Unknown";
}
}
#endif /* __ASSEMBLY__ */ #endif /* __ASSEMBLY__ */
#endif /* _PARISC_PDC_H */ #endif /* _PARISC_PDC_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment