mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 13:14:07 +08:00
mtd: gen_probe: Remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
5c8b1fbb2e
commit
c039bef73b
@ -114,7 +114,6 @@ static struct cfi_private *genprobe_ident_chips(struct map_info *map, struct chi
|
|||||||
mapsize = sizeof(long) * DIV_ROUND_UP(max_chips, BITS_PER_LONG);
|
mapsize = sizeof(long) * DIV_ROUND_UP(max_chips, BITS_PER_LONG);
|
||||||
chip_map = kzalloc(mapsize, GFP_KERNEL);
|
chip_map = kzalloc(mapsize, GFP_KERNEL);
|
||||||
if (!chip_map) {
|
if (!chip_map) {
|
||||||
printk(KERN_WARNING "%s: kmalloc failed for CFI chip map\n", map->name);
|
|
||||||
kfree(cfi.cfiq);
|
kfree(cfi.cfiq);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@ -139,7 +138,6 @@ static struct cfi_private *genprobe_ident_chips(struct map_info *map, struct chi
|
|||||||
retcfi = kmalloc(sizeof(struct cfi_private) + cfi.numchips * sizeof(struct flchip), GFP_KERNEL);
|
retcfi = kmalloc(sizeof(struct cfi_private) + cfi.numchips * sizeof(struct flchip), GFP_KERNEL);
|
||||||
|
|
||||||
if (!retcfi) {
|
if (!retcfi) {
|
||||||
printk(KERN_WARNING "%s: kmalloc failed for CFI private structure\n", map->name);
|
|
||||||
kfree(cfi.cfiq);
|
kfree(cfi.cfiq);
|
||||||
kfree(chip_map);
|
kfree(chip_map);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user