From patchwork Thu Jul 27 01:20:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Rob Herring (Arm)" X-Patchwork-Id: 13328656 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id BDD44C0015E for ; Thu, 27 Jul 2023 01:20:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230189AbjG0BUp (ORCPT ); Wed, 26 Jul 2023 21:20:45 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53712 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230050AbjG0BUo (ORCPT ); Wed, 26 Jul 2023 21:20:44 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7E53E270D; Wed, 26 Jul 2023 18:20:40 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 087AB61CE6; Thu, 27 Jul 2023 01:20:40 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id CD960C433C7; Thu, 27 Jul 2023 01:20:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690420839; bh=bhYIh3I6f7DBUF2htKEWd8dZyZSV5Xi6cSevrpqNDk8=; h=From:To:Cc:Subject:Date:From; b=ViqDEbnzvlMulRQfILhSR/+xaRNYrotnpZeDOO5g9CHRiTYKKerU9DEgP300EN+Yu 7uyIP+oMRLnVchutmkJ/ceQRuXiBSF3mSkN1vQ93X2RrqwIl2YugyD7J1zGwtYAPr5 l6cFlbH9sqjbfPcziYzzyMVH+PEuLOxrvNW7iHSlMPu6qwXp3ZZRxlijfKSM+jVJR3 D142QeZqvFPp6ypoOZjnLqXD/4OZQR8ZBmN6XWH+E7F4qQCzIs3t+1ua8Y9hXBUmVR Hm6yWsOnUwvRqN+D1B4gQLwlwBcJ8FNTqBPYzmUWdI86gwdpRa96d+mD/bMiJQvl1B LSDx9H6tS2v2Q== Received: (nullmailer pid 3933985 invoked by uid 1000); Thu, 27 Jul 2023 01:20:37 -0000 From: Rob Herring To: John Crispin , Thomas Bogendoerfer Cc: Geert Uytterhoeven , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] MIPS: Fixup explicit DT include clean-up Date: Wed, 26 Jul 2023 19:20:28 -0600 Message-Id: <20230727012028.3933785-1-robh@kernel.org> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-mips@vger.kernel.org Commit 657c45b303f87d77 ("MIPS: Explicitly include correct DT includes") removed a necessary include by mistake and missed adding an explicit include of spinlock.h (from of.h -> kobject.h -> spinlock.h). Fixes: 657c45b303f87d77 ("MIPS: Explicitly include correct DT includes") Reported-by: Geert Uytterhoeven Signed-off-by: Rob Herring --- arch/mips/lantiq/xway/gptu.c | 1 + arch/mips/pic32/pic32mzda/config.c | 1 + 2 files changed, 2 insertions(+) diff --git a/arch/mips/lantiq/xway/gptu.c b/arch/mips/lantiq/xway/gptu.c index e254b108fb9b..8d52001301de 100644 --- a/arch/mips/lantiq/xway/gptu.c +++ b/arch/mips/lantiq/xway/gptu.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include diff --git a/arch/mips/pic32/pic32mzda/config.c b/arch/mips/pic32/pic32mzda/config.c index 6e94ae66eba8..73be5689e0df 100644 --- a/arch/mips/pic32/pic32mzda/config.c +++ b/arch/mips/pic32/pic32mzda/config.c @@ -5,6 +5,7 @@ */ #include #include +#include #include