From patchwork Fri Oct 19 21:53:57 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Greer X-Patchwork-Id: 1619951 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id D43B53FC1A for ; Fri, 19 Oct 2012 21:54:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933072Ab2JSVyo (ORCPT ); Fri, 19 Oct 2012 17:54:44 -0400 Received: from mail20.dotsterhost.com ([66.11.232.73]:45895 "EHLO mail20.dotsterhost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932972Ab2JSVyn (ORCPT ); Fri, 19 Oct 2012 17:54:43 -0400 Received: (qmail 5446 invoked from network); 19 Oct 2012 21:54:43 -0000 Received: from unknown (HELO blue.animalcreek.com) (mgreer@animalcreek.com@[68.3.93.7]) by 66.11.232.73 with SMTP; 19 Oct 2012 21:54:43 -0000 Received: from blue.animalcreek.com (localhost [127.0.0.1]) by blue.animalcreek.com (Postfix) with ESMTP id A283D65C2E; Fri, 19 Oct 2012 14:54:42 -0700 (MST) From: "Mark A. Greer" To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: "Mark A. Greer" , Paul Walmsley Subject: [PATCH 4/7] ARM: OMAP2+: Remove unnecessary message when no SHA IP is present Date: Fri, 19 Oct 2012 14:53:57 -0700 Message-Id: <1350683640-15044-5-git-send-email-mgreer@animalcreek.com> X-Mailer: git-send-email 1.7.12 In-Reply-To: <1350683640-15044-1-git-send-email-mgreer@animalcreek.com> References: <1350683640-15044-1-git-send-email-mgreer@animalcreek.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: "Mark A. Greer" Remove the error message that prints when there is no SHA IP present to make it consistent with all the other IPs. CC: Paul Walmsley Signed-off-by: Mark A. Greer --- arch/arm/mach-omap2/devices.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index 40211de..8784812 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c @@ -472,8 +472,6 @@ static void __init omap_init_sham(void) pdev = omap_device_build("omap-sham", -1, oh, NULL, 0, NULL, 0, 0); WARN(IS_ERR(pdev), "Can't build omap_device for omap-sham\n"); - } else { - pr_err("%s: platform not supported\n", __func__); } }