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 50F211494C5; Thu, 15 Aug 2024 13:51:50 +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=1723729910; cv=none; b=O34YUtVPQgAUY/aL+8rBof5kWDx7PrNn/TtCmZG9HQ+oD0VkJeFyBjNboYjfB75bVkmA12goIXb7/Il7YlrUlFO68TrQD+1X8uI26u9RuV+wC7nfnv9jodq74Xrf4emWVdCwaR9WX0RJ4USg2jOsu/JZNkFokkMEfUVPW1kGtzo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723729910; c=relaxed/simple; bh=zxgzfDx1NYin+wEfyn7zrhJyzThZ+dgsDKxjDz7/Nuo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=hCT84GUD6JGH+0Z3J0+0ZBd2xDEQaPqvpzbhaKL3KtrhwD55i/d1c5qJ+W3s9iID6jWkDjbExmQOpabqsbpIG8Qlh71x2j4je9MDHgHrDviXBuynXbpJVL9vfPm1NxWFdm9NLFfzohkmBDVt0ERpHDwAf6opjbrI9K6uiWXrgB8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=W/bf1kg9; 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="W/bf1kg9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CCB16C32786; Thu, 15 Aug 2024 13:51:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1723729910; bh=zxgzfDx1NYin+wEfyn7zrhJyzThZ+dgsDKxjDz7/Nuo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=W/bf1kg95MjrFDzl+/td6eUdKszY0LICQ0MvKuVp4JEXzJYcM6MMdtDi8VEGdWLN2 0ARwaaDa6RYYDkwSy2s0NqTsXIPbMA2WkT7VbVudfMzIsPw2hCOQtqY+XxM7+B9aIw 8hpPf/gahYVyk3eUnOjt1ApgkLwbykLFPBN00xQ8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jiaxun Yang , Thomas Bogendoerfer Subject: [PATCH 5.15 246/484] MIPS: ip30: ip30-console: Add missing include Date: Thu, 15 Aug 2024 15:21:44 +0200 Message-ID: <20240815131950.902253012@linuxfoundation.org> X-Mailer: git-send-email 2.46.0 In-Reply-To: <20240815131941.255804951@linuxfoundation.org> References: <20240815131941.255804951@linuxfoundation.org> User-Agent: quilt/0.67 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jiaxun Yang commit 8de4ed75bd14ed197119ac509c6902a8561e0c1c upstream. Include linux/processor.h to fix build error: arch/mips/sgi-ip30/ip30-console.c: In function ‘prom_putchar’: arch/mips/sgi-ip30/ip30-console.c:21:17: error: implicit declaration of function ‘cpu_relax’ [-Werror=implicit-function-declaration] 21 | cpu_relax(); Cc: stable@vger.kernel.org Signed-off-by: Jiaxun Yang Signed-off-by: Thomas Bogendoerfer Signed-off-by: Greg Kroah-Hartman --- arch/mips/sgi-ip30/ip30-console.c | 1 + 1 file changed, 1 insertion(+) --- a/arch/mips/sgi-ip30/ip30-console.c +++ b/arch/mips/sgi-ip30/ip30-console.c @@ -1,6 +1,7 @@ // SPDX-License-Identifier: GPL-2.0 #include +#include #include