Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S973118AbXHMNgK (ORCPT ); Mon, 13 Aug 2007 09:36:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S971732AbXHMJuB (ORCPT ); Mon, 13 Aug 2007 05:50:01 -0400 Received: from wip-cdc-wd.wipro.com ([203.91.201.26]:41745 "EHLO wip-cdc-wd.wipro.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S971719AbXHMJt7 (ORCPT ); Mon, 13 Aug 2007 05:49:59 -0400 Subject: [KJ-resend]replacing kmalloc with kzalloc in drivers/mtd/chips/cfi_probe.c From: Surya Prabhakar N Reply-To: surya.prabhakar@wipro.com To: dwmw2@infradead.org, linux-mtd@lists.infradead.org Cc: linux-kernel@vger.kernel.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Linux Coe, Wipro Technologies Date: Mon, 13 Aug 2007 15:19:33 +0530 Message-Id: <1186998573.29518.6.camel@bluegenie> Mime-Version: 1.0 X-Mailer: Evolution 2.8.3 (2.8.3-2.fc6) X-OriginalArrivalTime: 13 Aug 2007 09:50:10.0918 (UTC) FILETIME=[56C54860:01C7DD8F] Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1171 Lines: 35 Hi, Replacing kmalloc with kzalloc and cleaning up memset in drivers/mtd/chips/cfi_probe.c. Kindly ignore the previous similar patch. Signed-off-by: Surya Prabhakar --- diff --git a/drivers/mtd/chips/cfi_probe.c b/drivers/mtd/chips/cfi_probe.c index 60e11a0..efb51f7 100644 --- a/drivers/mtd/chips/cfi_probe.c +++ b/drivers/mtd/chips/cfi_probe.c @@ -203,14 +203,12 @@ static int __xipram cfi_chip_setup(struct map_info *map, if (!num_erase_regions) return 0; - cfi->cfiq = kmalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL); + cfi->cfiq = kzalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL); if (!cfi->cfiq) { printk(KERN_WARNING "%s: kmalloc failed for CFI ident structure\n", map->name); return 0; } - memset(cfi->cfiq,0,sizeof(struct cfi_ident)); - cfi->cfi_mode = CFI_MODE_CFI; /* Read the CFI info structure */ thanks surya. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/