Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752043Ab2BQNIk (ORCPT ); Fri, 17 Feb 2012 08:08:40 -0500 Received: from mail-pz0-f46.google.com ([209.85.210.46]:56363 "EHLO mail-pz0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750865Ab2BQNIi (ORCPT ); Fri, 17 Feb 2012 08:08:38 -0500 From: Ajeet Yadav To: Russell King , Jon Medhurst , Nicolas Pitre , Catalin Marinas , Sumit Bhattacharya , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: Ajeet Yadav Subject: [PATCH 1/2] ARM: dma-mapping: its array of pointer Date: Fri, 17 Feb 2012 18:39:30 +0530 Message-Id: <1329484170-26329-1-git-send-email-ajeet.yadav.77@gmail.com> X-Mailer: git-send-email 1.7.8.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1047 Lines: 29 To be consistant with declaration and usage of consistent_pte it need to be an array of (pte *) Signed-off-by: Ajeet Yadav --- arch/arm/mm/dma-mapping.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c index 1aa664a..04bfa76 100644 --- a/arch/arm/mm/dma-mapping.c +++ b/arch/arm/mm/dma-mapping.c @@ -170,7 +170,7 @@ static int __init consistent_init(void) unsigned long base = consistent_base; unsigned long num_ptes = (CONSISTENT_END - base) >> PMD_SHIFT; - consistent_pte = kmalloc(num_ptes * sizeof(pte_t), GFP_KERNEL); + consistent_pte = kmalloc(num_ptes * sizeof(pte_t *), GFP_KERNEL); if (!consistent_pte) { pr_err("%s: no memory\n", __func__); return -ENOMEM; -- 1.7.8.4 -- 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/