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 36AB3315781; Mon, 18 Aug 2025 14:06:24 +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=1755525984; cv=none; b=l81xroexv25jQyk81+/m/bFKVQX6mSwqVNxd90+Gl2C9FCysiEckcZJi2nEk6cIa2/HXyf5I64GGFWAZXccAt5cC4acacYGyKSWq1U7UIW4TKJwbcY9b38W1DMUoQ4R745NIWC+DDHWJGnhv2cnU+DY2rIYcNd8vq3OOkiGNTVY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755525984; c=relaxed/simple; bh=wwsJ/qVVqhJc7SQPptuhk+nOTlMPe/d17jPTMwTCh5A=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Wr1jON39iAf2/cs2FgTCBxR/rbaptPMPPYJcjGZWnd50intxRMFjoj/h0dl2BKCf23skT/6sia6aIxEkido7JsoEn0spLU39KGdHwf6pmMY5Kv6WQykO5CPQEQdJ7eqfpPAr/59+T2oTd78jCPjSO5if3+4l4+ywdFmIoJahaI0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=StT3nglP; 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="StT3nglP" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6FDAFC4CEEB; Mon, 18 Aug 2025 14:06:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755525984; bh=wwsJ/qVVqhJc7SQPptuhk+nOTlMPe/d17jPTMwTCh5A=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=StT3nglPd+N9PFHY/RAgPwVcRE+Tk/GpOXHPwQ6KsOE7H0f08yqFyh86x3YLgjzm7 tBy4gvgepWOS8zKfln5+BxRUlNdKiAoTCq7CcqjDP7vD8nJaipbGvBcct7oj6a80Ue YD7l32VU9iRz9lLpl+vxtsFNa7GmcZHSYUGAdP1Q= 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.16 425/570] i3c: add missing include to internal header Date: Mon, 18 Aug 2025 14:46:52 +0200 Message-ID: <20250818124522.210758796@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250818124505.781598737@linuxfoundation.org> References: <20250818124505.781598737@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.16-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