* [PATCH] Fix build failure for 64-bit SB-1 kernels
@ 2008-02-14 16:58 Thiemo Seufer
2008-02-18 21:22 ` Ralf Baechle
0 siblings, 1 reply; 2+ messages in thread
From: Thiemo Seufer @ 2008-02-14 16:58 UTC (permalink / raw)
To: linux-mips; +Cc: ralf
Fix type mismatch warnings for 64-bit kernel builds which trigger -Werror.
The problem affects only SB-1 kernels with CONFIG_SIBYTE_DMA_PAGEOPS enabled.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
---
Index: linux.git/arch/mips/mm/pg-sb1.c
===================================================================
--- linux.git.orig/arch/mips/mm/pg-sb1.c 2008-02-12 00:14:34.000000000 +0000
+++ linux.git/arch/mips/mm/pg-sb1.c 2008-02-12 00:29:36.000000000 +0000
@@ -216,7 +216,7 @@
int i;
for (i = 0; i < DM_NUM_CHANNELS; i++) {
- const u64 base_val = CPHYSADDR(&page_descr[i]) |
+ const u64 base_val = CPHYSADDR((unsigned long)&page_descr[i]) |
V_DM_DSCR_BASE_RINGSZ(1);
void *base_reg = IOADDR(A_DM_REGISTER(i, R_DM_DSCR_BASE));
@@ -228,11 +228,11 @@
void clear_page(void *page)
{
- u64 to_phys = CPHYSADDR(page);
+ u64 to_phys = CPHYSADDR((unsigned long)page);
unsigned int cpu = smp_processor_id();
/* if the page is not in KSEG0, use old way */
- if ((long)KSEGX(page) != (long)CKSEG0)
+ if ((long)KSEGX((unsigned long)page) != (long)CKSEG0)
return clear_page_cpu(page);
page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_ZERO_MEM |
@@ -252,13 +252,13 @@
void copy_page(void *to, void *from)
{
- u64 from_phys = CPHYSADDR(from);
- u64 to_phys = CPHYSADDR(to);
+ u64 from_phys = CPHYSADDR((unsigned long)from);
+ u64 to_phys = CPHYSADDR((unsigned long)to);
unsigned int cpu = smp_processor_id();
/* if any page is not in KSEG0, use old way */
- if ((long)KSEGX(to) != (long)CKSEG0
- || (long)KSEGX(from) != (long)CKSEG0)
+ if ((long)KSEGX((unsigned long)to) != (long)CKSEG0
+ || (long)KSEGX((unsigned long)from) != (long)CKSEG0)
return copy_page_cpu(to, from);
page_descr[cpu].dscr_a = to_phys | M_DM_DSCRA_L2C_DEST |
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix build failure for 64-bit SB-1 kernels
2008-02-14 16:58 [PATCH] Fix build failure for 64-bit SB-1 kernels Thiemo Seufer
@ 2008-02-18 21:22 ` Ralf Baechle
0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2008-02-18 21:22 UTC (permalink / raw)
To: Thiemo Seufer; +Cc: linux-mips
On Thu, Feb 14, 2008 at 04:58:25PM +0000, Thiemo Seufer wrote:
> Fix type mismatch warnings for 64-bit kernel builds which trigger -Werror.
> The problem affects only SB-1 kernels with CONFIG_SIBYTE_DMA_PAGEOPS enabled.
Applied to 2.6.23 and newer.
Thanks,
Ralf
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-18 21:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-14 16:58 [PATCH] Fix build failure for 64-bit SB-1 kernels Thiemo Seufer
2008-02-18 21:22 ` Ralf Baechle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox