From mboxrd@z Thu Jan 1 00:00:00 1970 From: Viresh Kumar Subject: Re: [PATCH] cpufreq: s3c24xx: Delete an error message for a failed memory allocation in two functions Date: Mon, 19 Feb 2018 09:14:54 +0530 Message-ID: <20180219034454.GM28462@vireshk-i7> References: <201722ce-019d-a5b4-fc00-74679d82b64f@users.sourceforge.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <201722ce-019d-a5b4-fc00-74679d82b64f@users.sourceforge.net> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: SF Markus Elfring Cc: linux-samsung-soc@vger.kernel.org, linux-pm@vger.kernel.org, kernel-janitors@vger.kernel.org, "Rafael J. Wysocki" , LKML , Krzysztof Kozlowski , Kukjin Kim , linux-arm-kernel@lists.infradead.org List-Id: linux-pm@vger.kernel.org On 15-02-18, 17:40, SF Markus Elfring wrote: > From: Markus Elfring > Date: Thu, 15 Feb 2018 17:28:40 +0100 > > Omit an extra message for a memory allocation failure in these functions. > > This issue was detected by using the Coccinelle software. > > Signed-off-by: Markus Elfring > --- > drivers/cpufreq/s3c24xx-cpufreq.c | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > > diff --git a/drivers/cpufreq/s3c24xx-cpufreq.c b/drivers/cpufreq/s3c24xx-cpufreq.c > index 7b596fa38ad2..024afd0b9458 100644 > --- a/drivers/cpufreq/s3c24xx-cpufreq.c > +++ b/drivers/cpufreq/s3c24xx-cpufreq.c > @@ -473,10 +473,8 @@ int __init s3c_cpufreq_setboard(struct s3c_cpufreq_board *board) > * initdata. */ > > ours = kzalloc(sizeof(*ours), GFP_KERNEL); > - if (ours == NULL) { > - pr_err("%s: no memory\n", __func__); > + if (!ours) > return -ENOMEM; > - } > > *ours = *board; > cpu_cur.board = ours; > @@ -562,10 +560,8 @@ static int s3c_cpufreq_build_freq(void) > size++; > > ftab = kzalloc(sizeof(*ftab) * size, GFP_KERNEL); > - if (!ftab) { > - pr_err("%s: no memory for tables\n", __func__); > + if (!ftab) > return -ENOMEM; > - } > > ftab_size = size; > Acked-by: Viresh Kumar -- viresh