* [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers @ 2017-05-07 19:53 Geert Uytterhoeven 2017-05-07 19:53 ` [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions Geert Uytterhoeven 2017-05-12 8:57 ` [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Greg Kroah-Hartman 0 siblings, 2 replies; 7+ messages in thread From: Geert Uytterhoeven @ 2017-05-07 19:53 UTC (permalink / raw) To: Greg Kroah-Hartman, Gilad Ben-Yossef Cc: Arnd Bergmann, devel, linux-kernel, Geert Uytterhoeven Closing braces should match the first characters of the opening. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- drivers/staging/ccree/ssi_hash.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/drivers/staging/ccree/ssi_hash.c b/drivers/staging/ccree/ssi_hash.c index 8ff5d4ec9e5c00d2..33f4515dd7af4830 100644 --- a/drivers/staging/ccree/ssi_hash.c +++ b/drivers/staging/ccree/ssi_hash.c @@ -2001,8 +2001,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = SHA1_DIGEST_SIZE, .statesize = sizeof(struct sha1_state), - }, }, + }, .hash_mode = DRV_HASH_SHA1, .hw_mode = DRV_HASH_HW_SHA1, .inter_digestsize = SHA1_DIGEST_SIZE, @@ -2028,8 +2028,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = SHA256_DIGEST_SIZE, .statesize = sizeof(struct sha256_state), - }, }, + }, .hash_mode = DRV_HASH_SHA256, .hw_mode = DRV_HASH_HW_SHA256, .inter_digestsize = SHA256_DIGEST_SIZE, @@ -2055,8 +2055,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = SHA224_DIGEST_SIZE, .statesize = sizeof(struct sha256_state), - }, }, + }, .hash_mode = DRV_HASH_SHA224, .hw_mode = DRV_HASH_HW_SHA256, .inter_digestsize = SHA256_DIGEST_SIZE, @@ -2083,8 +2083,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = SHA384_DIGEST_SIZE, .statesize = sizeof(struct sha512_state), - }, }, + }, .hash_mode = DRV_HASH_SHA384, .hw_mode = DRV_HASH_HW_SHA512, .inter_digestsize = SHA512_DIGEST_SIZE, @@ -2110,8 +2110,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = SHA512_DIGEST_SIZE, .statesize = sizeof(struct sha512_state), - }, }, + }, .hash_mode = DRV_HASH_SHA512, .hw_mode = DRV_HASH_HW_SHA512, .inter_digestsize = SHA512_DIGEST_SIZE, @@ -2138,8 +2138,8 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = MD5_DIGEST_SIZE, .statesize = sizeof(struct md5_state), - }, }, + }, .hash_mode = DRV_HASH_MD5, .hw_mode = DRV_HASH_HW_MD5, .inter_digestsize = MD5_DIGEST_SIZE, @@ -2163,12 +2163,12 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = AES_BLOCK_SIZE, .statesize = sizeof(struct aeshash_state), - }, }, - .hash_mode = DRV_HASH_NULL, - .hw_mode = DRV_CIPHER_XCBC_MAC, - .inter_digestsize = AES_BLOCK_SIZE, }, + .hash_mode = DRV_HASH_NULL, + .hw_mode = DRV_CIPHER_XCBC_MAC, + .inter_digestsize = AES_BLOCK_SIZE, + }, #if SSI_CC_HAS_CMAC { .name = "cmac(aes)", @@ -2189,12 +2189,12 @@ static struct ssi_hash_template driver_hash[] = { .halg = { .digestsize = AES_BLOCK_SIZE, .statesize = sizeof(struct aeshash_state), - }, }, - .hash_mode = DRV_HASH_NULL, - .hw_mode = DRV_CIPHER_CMAC, - .inter_digestsize = AES_BLOCK_SIZE, }, + .hash_mode = DRV_HASH_NULL, + .hw_mode = DRV_CIPHER_CMAC, + .inter_digestsize = AES_BLOCK_SIZE, + }, #endif }; -- 2.7.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions 2017-05-07 19:53 [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Geert Uytterhoeven @ 2017-05-07 19:53 ` Geert Uytterhoeven 2017-05-08 7:56 ` Arnd Bergmann 2017-05-09 11:20 ` Gilad Ben-Yossef 2017-05-12 8:57 ` [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Greg Kroah-Hartman 1 sibling, 2 replies; 7+ messages in thread From: Geert Uytterhoeven @ 2017-05-07 19:53 UTC (permalink / raw) To: Greg Kroah-Hartman, Gilad Ben-Yossef Cc: Arnd Bergmann, devel, linux-kernel, Geert Uytterhoeven With gcc 4.1.2: drivers/staging/ccree/ssi_hash.c:1990: error: unknown field ‘template_ahash’ specified in initializer drivers/staging/ccree/ssi_hash.c:1991: error: unknown field ‘init’ specified in initializer drivers/staging/ccree/ssi_hash.c:1991: warning: missing braces around initializer drivers/staging/ccree/ssi_hash.c:1991: warning: (near initialization for ‘driver_hash[0].<anonymous>.template_ahash’) drivers/staging/ccree/ssi_hash.c:1992: error: unknown field ‘update’ specified in initializer drivers/staging/ccree/ssi_hash.c:1992: warning: excess elements in union initializer ... Add missing braces to fix this. After this it compiles without warnings with gcc 4.1.2 and 4.9.0. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- drivers/staging/ccree/ssi_hash.c | 208 +++++++++++++++++++++------------------ 1 file changed, 112 insertions(+), 96 deletions(-) diff --git a/drivers/staging/ccree/ssi_hash.c b/drivers/staging/ccree/ssi_hash.c index 33f4515dd7af4830..4401ce251a4a5623 100644 --- a/drivers/staging/ccree/ssi_hash.c +++ b/drivers/staging/ccree/ssi_hash.c @@ -1987,20 +1987,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-sha1-dx", .blocksize = SHA1_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = SHA1_DIGEST_SIZE, - .statesize = sizeof(struct sha1_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = SHA1_DIGEST_SIZE, + .statesize = sizeof(struct sha1_state), + }, }, }, .hash_mode = DRV_HASH_SHA1, @@ -2014,20 +2016,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-sha256-dx", .blocksize = SHA256_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = SHA256_DIGEST_SIZE, - .statesize = sizeof(struct sha256_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = SHA256_DIGEST_SIZE, + .statesize = sizeof(struct sha256_state), + }, }, }, .hash_mode = DRV_HASH_SHA256, @@ -2041,20 +2045,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-sha224-dx", .blocksize = SHA224_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = SHA224_DIGEST_SIZE, - .statesize = sizeof(struct sha256_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = SHA224_DIGEST_SIZE, + .statesize = sizeof(struct sha256_state), + }, }, }, .hash_mode = DRV_HASH_SHA224, @@ -2069,20 +2075,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-sha384-dx", .blocksize = SHA384_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = SHA384_DIGEST_SIZE, - .statesize = sizeof(struct sha512_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = SHA384_DIGEST_SIZE, + .statesize = sizeof(struct sha512_state), + }, }, }, .hash_mode = DRV_HASH_SHA384, @@ -2096,20 +2104,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-sha512-dx", .blocksize = SHA512_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = SHA512_DIGEST_SIZE, - .statesize = sizeof(struct sha512_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = SHA512_DIGEST_SIZE, + .statesize = sizeof(struct sha512_state), + }, }, }, .hash_mode = DRV_HASH_SHA512, @@ -2124,20 +2134,22 @@ static struct ssi_hash_template driver_hash[] = { .hmac_driver_name = "hmac-md5-dx", .blocksize = MD5_HMAC_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_ahash_update, - .final = ssi_ahash_final, - .finup = ssi_ahash_finup, - .digest = ssi_ahash_digest, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_ahash_update, + .final = ssi_ahash_final, + .finup = ssi_ahash_finup, + .digest = ssi_ahash_digest, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .setkey = ssi_ahash_setkey, - .halg = { - .digestsize = MD5_DIGEST_SIZE, - .statesize = sizeof(struct md5_state), + .setkey = ssi_ahash_setkey, + .halg = { + .digestsize = MD5_DIGEST_SIZE, + .statesize = sizeof(struct md5_state), + }, }, }, .hash_mode = DRV_HASH_MD5, @@ -2149,20 +2161,22 @@ static struct ssi_hash_template driver_hash[] = { .driver_name = "xcbc-aes-dx", .blocksize = AES_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_mac_update, - .final = ssi_mac_final, - .finup = ssi_mac_finup, - .digest = ssi_mac_digest, - .setkey = ssi_xcbc_setkey, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_mac_update, + .final = ssi_mac_final, + .finup = ssi_mac_finup, + .digest = ssi_mac_digest, + .setkey = ssi_xcbc_setkey, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .halg = { - .digestsize = AES_BLOCK_SIZE, - .statesize = sizeof(struct aeshash_state), + .halg = { + .digestsize = AES_BLOCK_SIZE, + .statesize = sizeof(struct aeshash_state), + }, }, }, .hash_mode = DRV_HASH_NULL, @@ -2175,20 +2189,22 @@ static struct ssi_hash_template driver_hash[] = { .driver_name = "cmac-aes-dx", .blocksize = AES_BLOCK_SIZE, .synchronize = false, - .template_ahash = { - .init = ssi_ahash_init, - .update = ssi_mac_update, - .final = ssi_mac_final, - .finup = ssi_mac_finup, - .digest = ssi_mac_digest, - .setkey = ssi_cmac_setkey, + { + .template_ahash = { + .init = ssi_ahash_init, + .update = ssi_mac_update, + .final = ssi_mac_final, + .finup = ssi_mac_finup, + .digest = ssi_mac_digest, + .setkey = ssi_cmac_setkey, #ifdef EXPORT_FIXED - .export = ssi_ahash_export, - .import = ssi_ahash_import, + .export = ssi_ahash_export, + .import = ssi_ahash_import, #endif - .halg = { - .digestsize = AES_BLOCK_SIZE, - .statesize = sizeof(struct aeshash_state), + .halg = { + .digestsize = AES_BLOCK_SIZE, + .statesize = sizeof(struct aeshash_state), + }, }, }, .hash_mode = DRV_HASH_NULL, -- 2.7.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions 2017-05-07 19:53 ` [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions Geert Uytterhoeven @ 2017-05-08 7:56 ` Arnd Bergmann 2017-05-09 11:20 ` Gilad Ben-Yossef 1 sibling, 0 replies; 7+ messages in thread From: Arnd Bergmann @ 2017-05-08 7:56 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Greg Kroah-Hartman, Gilad Ben-Yossef, devel, Linux Kernel Mailing List On Sun, May 7, 2017 at 9:53 PM, Geert Uytterhoeven <geert@linux-m68k.org> wrote: > With gcc 4.1.2: > > drivers/staging/ccree/ssi_hash.c:1990: error: unknown field ‘template_ahash’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1991: error: unknown field ‘init’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1991: warning: missing braces around initializer > drivers/staging/ccree/ssi_hash.c:1991: warning: (near initialization for ‘driver_hash[0].<anonymous>.template_ahash’) > drivers/staging/ccree/ssi_hash.c:1992: error: unknown field ‘update’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1992: warning: excess elements in union initializer > ... > > Add missing braces to fix this. > After this it compiles without warnings with gcc 4.1.2 and 4.9.0. Acked-by: Arnd Bergmann <arnd@arndb.de> For reference, we need this up to gcc-4.5, the anonymous initializers were added on gcc-4.6. Arnd ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions 2017-05-07 19:53 ` [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions Geert Uytterhoeven 2017-05-08 7:56 ` Arnd Bergmann @ 2017-05-09 11:20 ` Gilad Ben-Yossef 1 sibling, 0 replies; 7+ messages in thread From: Gilad Ben-Yossef @ 2017-05-09 11:20 UTC (permalink / raw) To: Geert Uytterhoeven Cc: Greg Kroah-Hartman, Arnd Bergmann, devel, Linux kernel mailing list Hi, On Sun, May 7, 2017 at 10:53 PM, Geert Uytterhoeven <geert@linux-m68k.org> wrote: > With gcc 4.1.2: > > drivers/staging/ccree/ssi_hash.c:1990: error: unknown field ‘template_ahash’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1991: error: unknown field ‘init’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1991: warning: missing braces around initializer > drivers/staging/ccree/ssi_hash.c:1991: warning: (near initialization for ‘driver_hash[0].<anonymous>.template_ahash’) > drivers/staging/ccree/ssi_hash.c:1992: error: unknown field ‘update’ specified in initializer > drivers/staging/ccree/ssi_hash.c:1992: warning: excess elements in union initializer > ... > > Add missing braces to fix this. > After this it compiles without warnings with gcc 4.1.2 and 4.9.0. It seems this bothered Andrew Morton too as he just took in to mm his own patch for the same issue, Thanks anyway! Gilad -- Gilad Ben-Yossef Chief Coffee Drinker "If you take a class in large-scale robotics, can you end up in a situation where the homework eats your dog?" -- Jean-Baptiste Queru ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers 2017-05-07 19:53 [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Geert Uytterhoeven 2017-05-07 19:53 ` [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions Geert Uytterhoeven @ 2017-05-12 8:57 ` Greg Kroah-Hartman 2017-05-12 9:28 ` Geert Uytterhoeven 1 sibling, 1 reply; 7+ messages in thread From: Greg Kroah-Hartman @ 2017-05-12 8:57 UTC (permalink / raw) To: Geert Uytterhoeven; +Cc: Gilad Ben-Yossef, Arnd Bergmann, devel, linux-kernel On Sun, May 07, 2017 at 09:53:29PM +0200, Geert Uytterhoeven wrote: > Closing braces should match the first characters of the opening. > > Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> > --- > drivers/staging/ccree/ssi_hash.c | 28 ++++++++++++++-------------- > 1 file changed, 14 insertions(+), 14 deletions(-) Doesn't apply to my tree at all :( ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers 2017-05-12 8:57 ` [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Greg Kroah-Hartman @ 2017-05-12 9:28 ` Geert Uytterhoeven 2017-05-12 9:31 ` Greg Kroah-Hartman 0 siblings, 1 reply; 7+ messages in thread From: Geert Uytterhoeven @ 2017-05-12 9:28 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Gilad Ben-Yossef, Arnd Bergmann, driverdevel, linux-kernel@vger.kernel.org Hi Greg, On Fri, May 12, 2017 at 10:57 AM, Greg Kroah-Hartman <gregkh@linuxfoundation.org> wrote: > On Sun, May 07, 2017 at 09:53:29PM +0200, Geert Uytterhoeven wrote: >> Closing braces should match the first characters of the opening. >> >> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> >> --- >> drivers/staging/ccree/ssi_hash.c | 28 ++++++++++++++-------------- >> 1 file changed, 14 insertions(+), 14 deletions(-) > > Doesn't apply to my tree at all :( Not anymore, as Linus applied an alternative from Andrew for my 2/2. Hence see v2. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers 2017-05-12 9:28 ` Geert Uytterhoeven @ 2017-05-12 9:31 ` Greg Kroah-Hartman 0 siblings, 0 replies; 7+ messages in thread From: Greg Kroah-Hartman @ 2017-05-12 9:31 UTC (permalink / raw) To: Geert Uytterhoeven Cc: driverdevel, linux-kernel@vger.kernel.org, Arnd Bergmann On Fri, May 12, 2017 at 11:28:37AM +0200, Geert Uytterhoeven wrote: > Hi Greg, > > On Fri, May 12, 2017 at 10:57 AM, Greg Kroah-Hartman > <gregkh@linuxfoundation.org> wrote: > > On Sun, May 07, 2017 at 09:53:29PM +0200, Geert Uytterhoeven wrote: > >> Closing braces should match the first characters of the opening. > >> > >> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> > >> --- > >> drivers/staging/ccree/ssi_hash.c | 28 ++++++++++++++-------------- > >> 1 file changed, 14 insertions(+), 14 deletions(-) > > > > Doesn't apply to my tree at all :( > > Not anymore, as Linus applied an alternative from Andrew for my 2/2. > Hence see v2. Ah, got that one now, sorry for the noise :) greg k-h ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-05-12 9:31 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-05-07 19:53 [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Geert Uytterhoeven 2017-05-07 19:53 ` [PATCH 2/2] staging: ccree: Fix initialization of anonymous unions Geert Uytterhoeven 2017-05-08 7:56 ` Arnd Bergmann 2017-05-09 11:20 ` Gilad Ben-Yossef 2017-05-12 8:57 ` [PATCH 1/2] staging: ccree: Fix indentation of driver_hash[] initializers Greg Kroah-Hartman 2017-05-12 9:28 ` Geert Uytterhoeven 2017-05-12 9:31 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox