From patchwork Thu Mar 25 20:21:54 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Weber X-Patchwork-Id: 88336 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o2PKKs4Y027648 for ; Thu, 25 Mar 2010 20:20:54 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754792Ab0CYUUx (ORCPT ); Thu, 25 Mar 2010 16:20:53 -0400 Received: from mail.gmx.net ([213.165.64.20]:58209 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1754656Ab0CYUUv (ORCPT ); Thu, 25 Mar 2010 16:20:51 -0400 Received: (qmail invoked by alias); 25 Mar 2010 20:20:45 -0000 Received: from ppp-93-104-155-237.dynamic.mnet-online.de (EHLO localhost.localdomain) [93.104.155.237] by mail.gmx.net (mp048) with SMTP; 25 Mar 2010 21:20:45 +0100 X-Authenticated: #5115406 X-Provags-ID: V01U2FsdGVkX18/KnYs4Cs/Sgy8WlvJtCv6mpz2dvE0bb0v2EnCqo cUvLHGTbpDBEcp From: swirl@gmx.li To: tony@atomide.com Cc: Thomas Weber , vimalsingh@ti.com, linux-omap@vger.kernel.org, Thomas Weber Subject: [PATCH] OMAP: board-sdp-flash.c: Fix typos in debug output Date: Thu, 25 Mar 2010 21:21:54 +0100 Message-Id: <1269548514-32588-1-git-send-email-swirl@gmx.li> X-Mailer: git-send-email 1.6.4.4 X-Y-GMX-Trusted: 0 X-FuHaFi: 0.54000000000000004 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Thu, 25 Mar 2010 20:20:54 +0000 (UTC) diff --git a/arch/arm/mach-omap2/board-sdp-flash.c b/arch/arm/mach-omap2/board-sdp-flash.c index b1b88de..2d02632 100644 --- a/arch/arm/mach-omap2/board-sdp-flash.c +++ b/arch/arm/mach-omap2/board-sdp-flash.c @@ -253,20 +253,20 @@ void __init sdp_flash_init(struct flash_partitions sdp_partition_info[]) } if (norcs > GPMC_CS_NUM) - printk(KERN_INFO "OneNAND: Unable to find configuration " - " in GPMC\n "); + printk(KERN_INFO "NOR: Unable to find configuration " + "in GPMC\n"); else board_nor_init(sdp_partition_info[0], norcs); if (onenandcs > GPMC_CS_NUM) printk(KERN_INFO "OneNAND: Unable to find configuration " - " in GPMC\n "); + "in GPMC\n"); else board_onenand_init(sdp_partition_info[1], onenandcs); if (nandcs > GPMC_CS_NUM) printk(KERN_INFO "NAND: Unable to find configuration " - " in GPMC\n "); + "in GPMC\n"); else board_nand_init(sdp_partition_info[2], nandcs); }