Re: [PATCH 13/14] crypto: drivers - remove cra_list initialization

2012-07-17 Thread Vladimir Zapolskiy
On 11.07.2012 14:20, Jussi Kivilinna wrote: Initialization of cra_list is currently mixed, most ciphers initialize this field and most shashes do not. Initialization however is not needed at all since cra_list is initialized/overwritten in __crypto_register_alg() with list_add(). Therefore

Re: [PATCH 13/14] crypto: drivers - remove cra_list initialization

2012-07-13 Thread Kent Yoder
On Wed, Jul 11, 2012 at 02:20:56PM +0300, Jussi Kivilinna wrote: Initialization of cra_list is currently mixed, most ciphers initialize this field and most shashes do not. Initialization however is not needed at all since cra_list is initialized/overwritten in __crypto_register_alg() with

[PATCH 13/14] crypto: drivers - remove cra_list initialization

2012-07-11 Thread Jussi Kivilinna
Initialization of cra_list is currently mixed, most ciphers initialize this field and most shashes do not. Initialization however is not needed at all since cra_list is initialized/overwritten in __crypto_register_alg() with list_add(). Therefore perform cleanup to remove all unneeded