From patchwork Sun Mar 24 18:27:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Pisati X-Patchwork-Id: 2327041 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id DE1E4DFB79 for ; Sun, 24 Mar 2013 18:31:54 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UJpdx-0002Tk-6k; Sun, 24 Mar 2013 18:27:45 +0000 Received: from mail-wi0-x22b.google.com ([2a00:1450:400c:c05::22b]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UJpdu-0002TP-04 for linux-arm-kernel@lists.infradead.org; Sun, 24 Mar 2013 18:27:42 +0000 Received: by mail-wi0-f171.google.com with SMTP id hn17so9399200wib.16 for ; Sun, 24 Mar 2013 11:27:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=RLr26loffQPxncprn+e0i9PUD/cFKQMasqcxkolvBtI=; b=Wt5SeQkjN/YZpLywnn/tnQp59owpAUs9xoK3Th36h8wV06OJljwUD5Nq9iDOI89Lij Cq8wD5TDNYbSymeBBkd5B/9BaoH0cRwjj2PHOasoPH4iaFkET4c9UecxZXDWNdPhyskQ HXJQp6f3f9fxXF2W4FnpSDBJFhqcUY8y9HQRPgi6Ap8XmjoXZpoMb2lblc4DMiRBH7LV BpJIQfUF3wmKOCVhFXXouZJ18uMQilgN2tVroBQx6RoJIBMy6NJMOqwUnnucQavdrTmf Ms5NgVArTaTYkcIFsk64YZJpfsi6W2dnmbOUYnDJdDVWisphUY9xwINbrsVd50qeD7L8 R8/g== X-Received: by 10.181.12.5 with SMTP id em5mr13071943wid.24.1364149657298; Sun, 24 Mar 2013 11:27:37 -0700 (PDT) Received: from gmail.com (2-230-238-136.ip204.fastwebnet.it. [2.230.238.136]) by mx.google.com with ESMTPS id s2sm17540781wib.4.2013.03.24.11.27.35 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 24 Mar 2013 11:27:36 -0700 (PDT) From: Paolo Pisati To: linux-arm-kernel@lists.infradead.org Subject: [PATCH] ARM: l2x0: don't set .set_debug in l310 case Date: Sun, 24 Mar 2013 19:27:34 +0100 Message-Id: <1364149654-16163-1-git-send-email-p.pisati@gmail.com> X-Mailer: git-send-email 1.7.10.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130324_142742_154167_1B741B4D X-CRM114-Status: GOOD ( 10.24 ) X-Spam-Score: -2.0 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.0 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (p.pisati[at]gmail.com) -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Russell King , Jason Cooper , Will Deacon , linux-kernel@vger.kernel.org, Rob Herring , Gregory CLEMENT X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Paolo Pisati commit 74ddcdb ("l2x0: Only set .set_debug on PL310 r3p0 and earlier") to actually work needs .set_debug to be not set during definition Signed-off-by: Paolo Pisati --- arch/arm/mm/cache-l2x0.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c index d457653..37f1364 100644 --- a/arch/arm/mm/cache-l2x0.c +++ b/arch/arm/mm/cache-l2x0.c @@ -724,7 +724,6 @@ static const struct l2x0_of_data pl310_data = { .flush_all = l2x0_flush_all, .inv_all = l2x0_inv_all, .disable = l2x0_disable, - .set_debug = pl310_set_debug, }, };