ARM: s3c24xx: Remove printk for failed memory allocation in iotiming get
Omit an extra message for a memory allocation failure in s3c2410_iotiming_get() and s3c2412_iotiming_get(). This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
This commit is contained in:
Родитель
2bd6bf03f4
Коммит
b3b391f8e4
|
@ -454,10 +454,8 @@ int s3c2410_iotiming_get(struct s3c_cpufreq_config *cfg,
|
||||||
__func__, bank, bankcon);
|
__func__, bank, bankcon);
|
||||||
|
|
||||||
bt = kzalloc(sizeof(struct s3c2410_iobank_timing), GFP_KERNEL);
|
bt = kzalloc(sizeof(struct s3c2410_iobank_timing), GFP_KERNEL);
|
||||||
if (!bt) {
|
if (!bt)
|
||||||
printk(KERN_ERR "%s: no memory for bank\n", __func__);
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
/* find out in nWait is enabled for bank. */
|
/* find out in nWait is enabled for bank. */
|
||||||
|
|
||||||
|
|
|
@ -243,10 +243,8 @@ int s3c2412_iotiming_get(struct s3c_cpufreq_config *cfg,
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
bt = kzalloc(sizeof(struct s3c2412_iobank_timing), GFP_KERNEL);
|
bt = kzalloc(sizeof(struct s3c2412_iobank_timing), GFP_KERNEL);
|
||||||
if (!bt) {
|
if (!bt)
|
||||||
printk(KERN_ERR "%s: no memory for bank\n", __func__);
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
timings->bank[bank].io_2412 = bt;
|
timings->bank[bank].io_2412 = bt;
|
||||||
s3c2412_iotiming_getbank(cfg, bt, bank);
|
s3c2412_iotiming_getbank(cfg, bt, bank);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче