diff options
Diffstat (limited to 'include/asm-ia64/sn/sn_sal.h')
-rw-r--r-- | include/asm-ia64/sn/sn_sal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/asm-ia64/sn/sn_sal.h b/include/asm-ia64/sn/sn_sal.h index 8b9e10e7cdba..e77f0c9b7d3d 100644 --- a/include/asm-ia64/sn/sn_sal.h +++ b/include/asm-ia64/sn/sn_sal.h | |||
@@ -273,7 +273,7 @@ ia64_sn_console_putc(char ch) | |||
273 | ret_stuff.v0 = 0; | 273 | ret_stuff.v0 = 0; |
274 | ret_stuff.v1 = 0; | 274 | ret_stuff.v1 = 0; |
275 | ret_stuff.v2 = 0; | 275 | ret_stuff.v2 = 0; |
276 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_PUTC, (uint64_t)ch, 0, 0, 0, 0, 0, 0); | 276 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_PUTC, (u64)ch, 0, 0, 0, 0, 0, 0); |
277 | 277 | ||
278 | return ret_stuff.status; | 278 | return ret_stuff.status; |
279 | } | 279 | } |
@@ -290,7 +290,7 @@ ia64_sn_console_putb(const char *buf, int len) | |||
290 | ret_stuff.v0 = 0; | 290 | ret_stuff.v0 = 0; |
291 | ret_stuff.v1 = 0; | 291 | ret_stuff.v1 = 0; |
292 | ret_stuff.v2 = 0; | 292 | ret_stuff.v2 = 0; |
293 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_PUTB, (uint64_t)buf, (uint64_t)len, 0, 0, 0, 0, 0); | 293 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_PUTB, (u64)buf, (u64)len, 0, 0, 0, 0, 0); |
294 | 294 | ||
295 | if ( ret_stuff.status == 0 ) { | 295 | if ( ret_stuff.status == 0 ) { |
296 | return ret_stuff.v0; | 296 | return ret_stuff.v0; |
@@ -310,7 +310,7 @@ ia64_sn_plat_specific_err_print(int (*hook)(const char*, ...), char *rec) | |||
310 | ret_stuff.v0 = 0; | 310 | ret_stuff.v0 = 0; |
311 | ret_stuff.v1 = 0; | 311 | ret_stuff.v1 = 0; |
312 | ret_stuff.v2 = 0; | 312 | ret_stuff.v2 = 0; |
313 | SAL_CALL_REENTRANT(ret_stuff, SN_SAL_PRINT_ERROR, (uint64_t)hook, (uint64_t)rec, 0, 0, 0, 0, 0); | 313 | SAL_CALL_REENTRANT(ret_stuff, SN_SAL_PRINT_ERROR, (u64)hook, (u64)rec, 0, 0, 0, 0, 0); |
314 | 314 | ||
315 | return ret_stuff.status; | 315 | return ret_stuff.status; |
316 | } | 316 | } |
@@ -398,7 +398,7 @@ ia64_sn_console_intr_status(void) | |||
398 | * Enable an interrupt on the SAL console device. | 398 | * Enable an interrupt on the SAL console device. |
399 | */ | 399 | */ |
400 | static inline void | 400 | static inline void |
401 | ia64_sn_console_intr_enable(uint64_t intr) | 401 | ia64_sn_console_intr_enable(u64 intr) |
402 | { | 402 | { |
403 | struct ia64_sal_retval ret_stuff; | 403 | struct ia64_sal_retval ret_stuff; |
404 | 404 | ||
@@ -415,7 +415,7 @@ ia64_sn_console_intr_enable(uint64_t intr) | |||
415 | * Disable an interrupt on the SAL console device. | 415 | * Disable an interrupt on the SAL console device. |
416 | */ | 416 | */ |
417 | static inline void | 417 | static inline void |
418 | ia64_sn_console_intr_disable(uint64_t intr) | 418 | ia64_sn_console_intr_disable(u64 intr) |
419 | { | 419 | { |
420 | struct ia64_sal_retval ret_stuff; | 420 | struct ia64_sal_retval ret_stuff; |
421 | 421 | ||
@@ -441,7 +441,7 @@ ia64_sn_console_xmit_chars(char *buf, int len) | |||
441 | ret_stuff.v1 = 0; | 441 | ret_stuff.v1 = 0; |
442 | ret_stuff.v2 = 0; | 442 | ret_stuff.v2 = 0; |
443 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_XMIT_CHARS, | 443 | SAL_CALL_NOLOCK(ret_stuff, SN_SAL_CONSOLE_XMIT_CHARS, |
444 | (uint64_t)buf, (uint64_t)len, | 444 | (u64)buf, (u64)len, |
445 | 0, 0, 0, 0, 0); | 445 | 0, 0, 0, 0, 0); |
446 | 446 | ||
447 | if (ret_stuff.status == 0) { | 447 | if (ret_stuff.status == 0) { |