Re: [PATCH] powerpc/crypto: Remove virt_to_abs() usage in nx-842.c

2012-08-20 Thread Herbert Xu
On Fri, Aug 03, 2012 at 09:40:54AM -0500, Seth Jennings wrote: > On 08/02/2012 09:23 PM, Michael Ellerman wrote: > > virt_to_abs() is just a wrapper around __pa(), use __pa() directly. > > > > We should be including to get __pa(). abs_addr.h will be > > removed shortly so drop that. > > > > We w

Re: [PATCH] powerpc/crypto: Remove virt_to_abs() usage in nx-842.c

2012-08-03 Thread Seth Jennings
On 08/02/2012 09:23 PM, Michael Ellerman wrote: > virt_to_abs() is just a wrapper around __pa(), use __pa() directly. > > We should be including to get __pa(). abs_addr.h will be > removed shortly so drop that. > > We were getting of.h via abs_addr.h so we need to include that directly. > > Hav

Re: [PATCH] powerpc/crypto: Remove virt_to_abs() usage in nx-842.c

2012-08-02 Thread Michael Ellerman
Hi Herbert, We're planning on removing virt_to_abs() from the powerpc tree this cycle. So if you can take this patch in your tree everything should continue building when the two trees merge. cheers -- To unsubscribe from this list: send the line "unsubscribe linux-crypto" in the body of a messa

[PATCH] powerpc/crypto: Remove virt_to_abs() usage in nx-842.c

2012-08-02 Thread Michael Ellerman
virt_to_abs() is just a wrapper around __pa(), use __pa() directly. We should be including to get __pa(). abs_addr.h will be removed shortly so drop that. We were getting of.h via abs_addr.h so we need to include that directly. Having done all that, clean up the ordering of the includes. Signe