Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752982AbbELHj3 (ORCPT ); Tue, 12 May 2015 03:39:29 -0400 Received: from bhuna.collabora.co.uk ([93.93.135.160]:43965 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752827AbbELHjY (ORCPT ); Tue, 12 May 2015 03:39:24 -0400 From: Sjoerd Simons To: Rob Herring , Russell King , Tony Lindgren Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Javier Martinez Canillas Subject: [PATCH 2/2] ARM: l2c: highbank: Add dummy configure function Date: Tue, 12 May 2015 09:39:15 +0200 Message-Id: <1431416355-7693-3-git-send-email-sjoerd.simons@collabora.co.uk> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1431416355-7693-1-git-send-email-sjoerd.simons@collabora.co.uk> References: <1431416355-7693-1-git-send-email-sjoerd.simons@collabora.co.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1239 Lines: 42 Add empty configure function for the highbank l2c to reflect that the cache can't be confured through a SMC. This prevent a useless WARN_ONCE during early boot. Signed-off-by: Sjoerd Simons --- arch/arm/mach-highbank/highbank.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm/mach-highbank/highbank.c b/arch/arm/mach-highbank/highbank.c index 231fba0..623eb5e8 100644 --- a/arch/arm/mach-highbank/highbank.c +++ b/arch/arm/mach-highbank/highbank.c @@ -60,12 +60,20 @@ static void highbank_l2c310_write_sec(unsigned long val, unsigned reg) reg); } +static void highbank_l2c310_configure(const struct l2x0_regs *regs) +{ +} + static void __init highbank_init_irq(void) { irqchip_init(); if (of_find_compatible_node(NULL, NULL, "arm,cortex-a9")) highbank_scu_map_io(); + + if (IS_ENABLED(CONFIG_CACHE_L2X0)) { + outer_cache.configure = highbank_l2c310_configure; + } } static void highbank_power_off(void) -- 2.1.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/