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 6B58A34320F; Tue, 26 Aug 2025 13:54:02 +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=1756216442; cv=none; b=jUP7b3/TvbwGt3pEDFRaOyrRLpbauaRpgGRpoQm1W5SpadX6wnKSKUz9LZ5uQMoR5c0zeuuS6fcY6JRzLNGYUYqRsnWTXCt7B12pWXnk/ypelbMvnX2+OrPHtkk6xGGnfUCCJz/VR1TTPrDbu37kaT3ubKu+e3ecgfKHnpfOUdo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756216442; c=relaxed/simple; bh=k6SlhydMQT+BFLzQwH1pj4urcutpXL31L7O38s1HSm4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RsOh2yxNmHjkOTtV+PGVowk+azlGtjPy46CLqNQhHGTg0t92dXfIVwnyDXcYU9nk6h0mYaoRUB7bABXAdvsiEOou4OwVxcG7Tj4X4ve8RV16JAdozOhjxuX+m1egAedmPfhWawmtpSFKBOMAsA/z26P0tVV47Yby+HjHJnw28kQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HcL4Lxpm; 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="HcL4Lxpm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F2913C4CEF1; Tue, 26 Aug 2025 13:54:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756216442; bh=k6SlhydMQT+BFLzQwH1pj4urcutpXL31L7O38s1HSm4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HcL4Lxpm4Yj+Z3rjzLrE+3RTX6iXbsvQGhA0zRy1bchZAPFqdZ3T9QU/FmS5k+ugW 3Zd8ErWgw0u7uUn8hJqpdwdt0iV8oqMtTYaX+kyE6T+YJaC74Ryc92iDch1pmrf3LK GeWk1J1W31vFUcsY0eqdL7ooRECXT7nC1kZFG+gY= 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 5.15 413/644] i3c: add missing include to internal header Date: Tue, 26 Aug 2025 13:08:24 +0200 Message-ID: <20250826110956.691354139@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250826110946.507083938@linuxfoundation.org> References: <20250826110946.507083938@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 5.15-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 86b7b44cfca2..1906c711f38a 100644 --- a/drivers/i3c/internals.h +++ b/drivers/i3c/internals.h @@ -9,6 +9,7 @@ #define I3C_INTERNALS_H #include +#include extern struct bus_type i3c_bus_type; -- 2.39.5