Re: [PATCH] display7seg: Introduce the use of the managed version of kzalloc

2014-07-21 Thread David Miller
From: Himangi Saraogi Date: Tue, 27 May 2014 03:02:07 +0530 > This patch moves data allocated using kzalloc to managed data allocated > using devm_kzalloc and cleans now unnecessary kfrees in probe and remove > functions. The header file is added to make the devm function explicitly > available.

Re: [PATCH] display7seg: Introduce the use of the managed version of kzalloc

2014-07-21 Thread David Miller
From: Himangi Saraogi himangi...@gmail.com Date: Tue, 27 May 2014 03:02:07 +0530 This patch moves data allocated using kzalloc to managed data allocated using devm_kzalloc and cleans now unnecessary kfrees in probe and remove functions. The header file is added to make the devm function

[PATCH] display7seg: Introduce the use of the managed version of kzalloc

2014-05-26 Thread Himangi Saraogi
This patch moves data allocated using kzalloc to managed data allocated using devm_kzalloc and cleans now unnecessary kfrees in probe and remove functions. The header file is added to make the devm function explicitly available. The following Coccinelle semantic patch was used for making a part

[PATCH] display7seg: Introduce the use of the managed version of kzalloc

2014-05-26 Thread Himangi Saraogi
This patch moves data allocated using kzalloc to managed data allocated using devm_kzalloc and cleans now unnecessary kfrees in probe and remove functions. The header file is added to make the devm function explicitly available. The following Coccinelle semantic patch was used for making a part