From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 1CD62218AAB; Mon, 18 Aug 2025 13:09:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755522592; cv=none; b=XdETbzj/nEtwnzZ5+cpkZxowvCTnsHP4B37pFb5sIiHNDiYFSy2jnDFfeKCCglomKXsfvny7O9aUc+vdhpjotoJ3m39jKaF1qss7OxAzUlw1j0wYRmdGql/s4h2PnhtsMzTEhBoM6sKk/870hI4Dw/WhRWPaCVqjCmud1kTy/IU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755522592; c=relaxed/simple; bh=NSI7JfUzi5WYGWH9wefcI5LRmlhot4ewcNLaPfVA23k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tN7tcFeuivVlZn63Hcs+mW9oofeYNwz/MoV/GsgDSrN3tF/lj22QJvcWXfnX/qpA0NuDD7tAqVGZ7pmVvTfDW9C5hLFBckCvOwDqReww0zRnkRWNfo4E84FGHaC1W3M6C8m7rLTYwxxcDkws6YT8rC8qGdNRYFODbk4oPmQnQCY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=bQn+ymlP; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="bQn+ymlP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 865E9C4CEEB; Mon, 18 Aug 2025 13:09:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755522592; bh=NSI7JfUzi5WYGWH9wefcI5LRmlhot4ewcNLaPfVA23k=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bQn+ymlPKHBScCBYv6+W/L+yB1lUn/Pp9MbCfM6LfSuNHsMb52JPeDbZr5Qa+04sA aft/CQE1kcIAJ4CheySYVALLWoPuTUktmf2P41cPLWw9JG3zWMlzE3lG1zWzgOIohz FLnCrDlIEP0wzyjTMQ+nxp3kIT6Fc/JCuI4ix4ZM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Wolfram Sang , Frank Li , Alexandre Belloni , Sasha Levin Subject: [PATCH 6.12 329/444] i3c: add missing include to internal header Date: Mon, 18 Aug 2025 14:45:55 +0200 Message-ID: <20250818124501.270014202@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250818124448.879659024@linuxfoundation.org> References: <20250818124448.879659024@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Wolfram Sang [ Upstream commit 3b661ca549b9e5bb11d0bc97ada6110aac3282d2 ] LKP found a random config which failed to build because IO accessors were not defined: In file included from drivers/i3c/master.c:21: drivers/i3c/internals.h: In function 'i3c_writel_fifo': >> drivers/i3c/internals.h:35:9: error: implicit declaration of function 'writesl' [-Werror=implicit-function-declaration] Add the proper header to where the IO accessors are used. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202507150208.BZDzzJ5E-lkp@intel.com/ Signed-off-by: Wolfram Sang Reviewed-by: Frank Li Link: https://lore.kernel.org/r/20250717120046.9022-2-wsa+renesas@sang-engineering.com Signed-off-by: Alexandre Belloni Signed-off-by: Sasha Levin --- drivers/i3c/internals.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i3c/internals.h b/drivers/i3c/internals.h index 433f6088b7ce..ce04aa4f269e 100644 --- a/drivers/i3c/internals.h +++ b/drivers/i3c/internals.h @@ -9,6 +9,7 @@ #define I3C_INTERNALS_H #include +#include void i3c_bus_normaluse_lock(struct i3c_bus *bus); void i3c_bus_normaluse_unlock(struct i3c_bus *bus); -- 2.39.5