[PATCH 2.6.11.7] Remove iopa()
From: McMullan, Jason <hidden>
Date: 2005-05-09 20:57:47
iopa() is stupid. Remove it. -- Jason McMullan [off-list ref] TimeSys Corporation
3 messages, 2 authors, 2005-05-10 · open the first message on its own page
From: McMullan, Jason <hidden>
Date: 2005-05-09 20:57:47
iopa() is stupid. Remove it. -- Jason McMullan [off-list ref] TimeSys Corporation
From: Pantelis Antoniou <hidden>
Date: 2005-05-10 11:19:25
McMullan, Jason wrote:
iopa() is stupid. Remove it.
Jason take a look at virt_to_phys...
extern inline unsigned long virt_to_phys(volatile void * address)
{
#ifndef CONFIG_APUS
return (unsigned long) address - KERNELBASE;
#else
return iopa ((unsigned long) address);
#endif
}
Maybe virt_to_xxx needs to go too?
Regards
Pantelis
From: Pantelis Antoniou <hidden>
Date: 2005-05-10 11:27:02
Pantelis Antoniou wrote:
McMullan, Jason wrote:quoted
iopa() is stupid. Remove it.Jason take a look at virt_to_phys... extern inline unsigned long virt_to_phys(volatile void * address) { #ifndef CONFIG_APUS return (unsigned long) address - KERNELBASE; #else return iopa ((unsigned long) address); #endif } Maybe virt_to_xxx needs to go too?
Oops sorry. Maybe APUS needs to go instead :) Regards Pantelis