mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y
@ 2010-10-16 13:49 Tracey Dent
  2010-10-16 13:49 ` [PATCH 02/02] Drivers: crypto: amcc: " Tracey Dent
  2010-10-19 12:52 ` [PATCH 01/02] Drivers: crypto: " Herbert Xu
  0 siblings, 2 replies; 4+ messages in thread
From: Tracey Dent @ 2010-10-16 13:49 UTC (permalink / raw)
  To: herbert; +Cc: davem, linux-kernel, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/crypto/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/crypto/Makefile b/drivers/crypto/Makefile
index 64289c6..2566973 100644
--- a/drivers/crypto/Makefile
+++ b/drivers/crypto/Makefile
@@ -2,7 +2,7 @@ obj-$(CONFIG_CRYPTO_DEV_PADLOCK_AES) += padlock-aes.o
 obj-$(CONFIG_CRYPTO_DEV_PADLOCK_SHA) += padlock-sha.o
 obj-$(CONFIG_CRYPTO_DEV_GEODE) += geode-aes.o
 obj-$(CONFIG_CRYPTO_DEV_NIAGARA2) += n2_crypto.o
-n2_crypto-objs := n2_core.o n2_asm.o
+n2_crypto-y := n2_core.o n2_asm.o
 obj-$(CONFIG_CRYPTO_DEV_HIFN_795X) += hifn_795x.o
 obj-$(CONFIG_CRYPTO_DEV_MV_CESA) += mv_cesa.o
 obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o
-- 
1.7.3.1.104.gc752e


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 02/02] Drivers: crypto: amcc: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-16 13:49 [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
@ 2010-10-16 13:49 ` Tracey Dent
  2010-10-19 12:52 ` [PATCH 01/02] Drivers: crypto: " Herbert Xu
  1 sibling, 0 replies; 4+ messages in thread
From: Tracey Dent @ 2010-10-16 13:49 UTC (permalink / raw)
  To: herbert; +Cc: davem, linux-kernel, Tracey Dent

Changed <module>-objs to <module>-y in Makefile.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
---
 drivers/crypto/amcc/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/crypto/amcc/Makefile b/drivers/crypto/amcc/Makefile
index aa376e8..5c0c62b 100644
--- a/drivers/crypto/amcc/Makefile
+++ b/drivers/crypto/amcc/Makefile
@@ -1,2 +1,2 @@
 obj-$(CONFIG_CRYPTO_DEV_PPC4XX) += crypto4xx.o
-crypto4xx-objs :=  crypto4xx_core.o crypto4xx_alg.o crypto4xx_sa.o
+crypto4xx-y :=  crypto4xx_core.o crypto4xx_alg.o crypto4xx_sa.o
-- 
1.7.3.1.104.gc752e


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-16 13:49 [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
  2010-10-16 13:49 ` [PATCH 02/02] Drivers: crypto: amcc: " Tracey Dent
@ 2010-10-19 12:52 ` Herbert Xu
  2010-10-19 22:01   ` Tracey Dent
  1 sibling, 1 reply; 4+ messages in thread
From: Herbert Xu @ 2010-10-19 12:52 UTC (permalink / raw)
  To: Tracey Dent; +Cc: davem, linux-kernel

On Sat, Oct 16, 2010 at 09:49:22AM -0400, Tracey Dent wrote:
> Changed <module>-objs to <module>-y in Makefile.
> 
> Signed-off-by: Tracey Dent <tdent48227@gmail.com>

I've rolled both patches into one and applied it.

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y
  2010-10-19 12:52 ` [PATCH 01/02] Drivers: crypto: " Herbert Xu
@ 2010-10-19 22:01   ` Tracey Dent
  0 siblings, 0 replies; 4+ messages in thread
From: Tracey Dent @ 2010-10-19 22:01 UTC (permalink / raw)
  To: Herbert Xu; +Cc: davem, linux-kernel

On 10/19/10, Herbert Xu <herbert@gondor.apana.org.au> wrote:
> On Sat, Oct 16, 2010 at 09:49:22AM -0400, Tracey Dent wrote:
>> Changed <module>-objs to <module>-y in Makefile.
>>
>> Signed-off-by: Tracey Dent <tdent48227@gmail.com>
>
> I've rolled both patches into one and applied it.
>
> Thanks,
> --
> Email: Herbert Xu <herbert@gondor.apana.org.au>
> Home Page: http://gondor.apana.org.au/~herbert/
> PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
>

Thanks

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-10-19 22:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-16 13:49 [PATCH 01/02] Drivers: crypto: Makefile: replace the use of <module>-objs with <module>-y Tracey Dent
2010-10-16 13:49 ` [PATCH 02/02] Drivers: crypto: amcc: " Tracey Dent
2010-10-19 12:52 ` [PATCH 01/02] Drivers: crypto: " Herbert Xu
2010-10-19 22:01   ` Tracey Dent

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®