[RFC PATCH] powerpc: crypto/vmx: clean up generated files

2016-11-15 Thread Naveen N. Rao
..as stray .S files result in build errors, especially when using cross-compilers. More specifically, the generated .S files are endian-specific and will break subsequent builds targeting the other endian architecture. Signed-off-by: Naveen N. Rao --- drivers/crypto/vmx/Makefile | 2 +- 1 file

Re: [RFC PATCH] powerpc: crypto/vmx: clean up generated files

2016-11-16 Thread Naveen N. Rao
On 2016/11/16 09:02PM, Michael Ellerman wrote: > "Naveen N. Rao" writes: > > > ..as stray .S files result in build errors, especially when using > > cross-compilers. > > They should be cleaned on make clean, so adding them to clean-files > seems correct. &g

[PATCH] powerpc: crypto/vmx: various build fixes

2016-11-16 Thread Naveen N. Rao
y: Michael Ellerman Signed-off-by: Naveen N. Rao --- Michael, I've added your SOB here though you didn't explicitly include it in your previous mail. I hope that's fine from your end. - Naveen drivers/crypto/vmx/Makefile | 12 +++- 1 file changed, 7 insertions(+), 5 deletions

Re: [PATCH] powerpc: crypto/vmx: various build fixes

2016-11-17 Thread Naveen N. Rao
On 2016/11/17 09:03PM, Herbert Xu wrote: > On Thu, Nov 17, 2016 at 11:51:56AM +1100, Michael Ellerman wrote: > > > > Crypto patches usually have a subject like: > > > > crypto: vmx - Various build fixes Ok. > > > > But maybe Herbert can fix it up for you when he applies this. > > Sure I can fi

Re: [PATCH] crypto: vmx - rebuild generated asm when target changes

2016-11-28 Thread Naveen N. Rao
On 2016/11/26 03:24PM, Nicholas Piggin wrote: > Switching from big endian to little endian can fail to regenerate > the crypto assembly properly. Switch to using standard form of > kbuild dependency checking (i.e., use FORCE and if_changed). > > Signed-off-by: Nicholas Piggin Hi Nick, A similar