From 012216458a646a73c5193debdfb19a02dea921b7 Mon Sep 17 00:00:00 2001 From: Russ Anderson Date: Tue, 26 Sep 2006 14:47:48 -0500 Subject: [PATCH] --- yaml --- r: 36345 b: refs/heads/master c: b29e7132b5a9f2496beed37beef7ba4d010afb2c h: refs/heads/master i: 36343: 3b466d2c693961d317b4074ad4695729d1881f19 v: v3 --- [refs] | 2 +- trunk/include/asm-ia64/pal.h | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index ed4da117e67c..74a1bec98eed 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 8f9e146732dcba5161dad3747ee73be1f8c13133 +refs/heads/master: b29e7132b5a9f2496beed37beef7ba4d010afb2c diff --git a/trunk/include/asm-ia64/pal.h b/trunk/include/asm-ia64/pal.h index d1587e4f5759..2c8fd92d0ece 100644 --- a/trunk/include/asm-ia64/pal.h +++ b/trunk/include/asm-ia64/pal.h @@ -964,7 +964,8 @@ static inline s64 ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr) { struct ia64_pal_retval iprv; - PAL_CALL(iprv, PAL_CACHE_READ, line_id.pclid_data, physical_addr, 0); + PAL_CALL_PHYS_STK(iprv, PAL_CACHE_READ, line_id.pclid_data, + physical_addr, 0); return iprv.status; } @@ -986,7 +987,8 @@ static inline s64 ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data) { struct ia64_pal_retval iprv; - PAL_CALL(iprv, PAL_CACHE_WRITE, line_id.pclid_data, physical_addr, data); + PAL_CALL_PHYS_STK(iprv, PAL_CACHE_WRITE, line_id.pclid_data, + physical_addr, data); return iprv.status; }