From nobody Thu Dec 18 15:31:42 2025 Received: from out30-119.freemail.mail.aliyun.com (out30-119.freemail.mail.aliyun.com [115.124.30.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6A5DE4A1D for ; Fri, 30 Aug 2024 00:59:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=115.124.30.119 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724979575; cv=none; b=HGSFczpHOsfVKy+Btt4wRcuo/hqBg4dhkmsAq7Cc1hHy504QThhBSDFoJAjypluvlrF6UDkz4HKOViodriStlQQ88HkN2jkK5U598ltn2jg181ETM0BY+5iljhqXJtJsYtUEZwm7iZDXf352QfnKfbFuaD+UkDwwN4lcZcE5CK0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724979575; c=relaxed/simple; bh=75IGC6THu6HqINRdVI+dTwyIDsDLIy4t4leaTJ8dgP0=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=t3j+6tO+mFHd1hu7th4ij5YBDFayIRpTb/Md4dGazP+rEBEe0pF2ZsMqmtI0ycGnIoMjPb2LFEkUUIuHUDZrTazvIxdVFChb6NURbnS8D7oRLgWiA1DJwvXCsZaorCAXyOTcQVMlOAx2zXog7kQhayH6Jr4kKMKGOykbCAEkLa4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com; spf=pass smtp.mailfrom=linux.alibaba.com; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b=G6sDTstS; arc=none smtp.client-ip=115.124.30.119 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.alibaba.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.alibaba.com header.i=@linux.alibaba.com header.b="G6sDTstS" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.alibaba.com; s=default; t=1724979564; h=From:To:Subject:Date:Message-Id:MIME-Version; bh=agv4jlqB0W2s9rUv5CtaLWILPixA3RCs3WIFMI3FJqI=; b=G6sDTstSKVx4XnXLcVyav87mST1C+JYuA5pdoZ584qPDm1Mk0bS80v+eYejBHatm0DsVHI0GwhSvTesna6f7Li3Zmul2YfF+dfXyfhVvq1yy526ONyg1woZ7WWi7CyxgDU/VI02Drkc32XCoWoGN1eA59VOVv295y7zFB5557zY= Received: from localhost(mailfrom:yang.lee@linux.alibaba.com fp:SMTPD_---0WDuRsrk_1724979562) by smtp.aliyun-inc.com; Fri, 30 Aug 2024 08:59:23 +0800 From: Yang Li To: linux@armlinux.org.uk Cc: linux-kernel@vger.kernel.org, Yang Li , Abaci Robot Subject: [PATCH -next] ARM: footbridge: Remove duplicated include in common.c Date: Fri, 30 Aug 2024 08:59:21 +0800 Message-Id: <20240830005921.42144-1-yang.lee@linux.alibaba.com> X-Mailer: git-send-email 2.32.0.3.g01195cf9f Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The header files asm/hardware/dec21285.h is included twice in common.c, so one inclusion of each can be removed. Reported-by: Abaci Robot Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D9835 Signed-off-by: Yang Li --- arch/arm/mach-footbridge/common.c | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-footbridge/common.c b/arch/arm/mach-footbridge/c= ommon.c index 85c598708c10..c8f52d52b91b 100644 --- a/arch/arm/mach-footbridge/common.c +++ b/arch/arm/mach-footbridge/common.c @@ -30,7 +30,6 @@ =20 #include #include -#include =20 static int dc21285_get_irq(void) { --=20 2.32.0.3.g01195cf9f