From patchwork Mon May 13 13:20:52 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13663449 Received: from baptiste.telenet-ops.be (baptiste.telenet-ops.be [195.130.132.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 66D6415216F for ; Mon, 13 May 2024 13:21:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.51 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715606471; cv=none; b=GRyhK9hX5vhq3QGS6cijgEyn0BQxmjhD/s+LWugs/xAaqya6h6DHmi5C3qcV7CMN+qGEJBK+kIFZnFCBnV/W97uCjKB/Ws04fc/AaPuDSB8LfezEYDr3x6uXir9QfbtPeTWQKXgKEYJkUquVtJCh4W1qhGp50QGSZjDcawvb/cc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1715606471; c=relaxed/simple; bh=p8vL6YoySFXtH7yBUGU4yZJWG0hMGXiTflCKpNQf50I=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=kqLnmhHodPwQfY6HA91AO1VnuLgf5TxQq99XwZHq2tDcLpY/G0P+TglbX/q6PRgN0AfEB2b/yUaq6ROexIeP3wMmQVixXzQiVmP5OqlpVhTMliqkcODeZljGb7jJGmRRa5Ji8Fse3bzkxPEr/IGaUlFP0NtwHqwjYLE2+rrjFRY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.51 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:c85e:4b6d:1f91:1410]) by baptiste.telenet-ops.be with bizsmtp id NdM02C0065V4kqY01dM0nt; Mon, 13 May 2024 15:21:00 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1s6Vb7-00399h-RK; Mon, 13 May 2024 15:21:00 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1s6Vbv-008tqO-U0; Mon, 13 May 2024 15:20:59 +0200 From: Geert Uytterhoeven To: Yoshinori Sato , Rich Felker , John Paul Adrian Glaubitz , Arnd Bergmann Cc: linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 0/3] sh: Fix missing prototypes (part three) Date: Mon, 13 May 2024 15:20:52 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-sh@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Hi all, This patch series fixes more "no previous prototype for " warnings when building a kernel for SuperH, namely when building j2_defconfig. Thanks for your comments! Geert Uytterhoeven (3): sh: of-generic: Add missing #include sh: smp: Protect setup_profiling_timer() by CONFIG_PROFILING sh: setup: Add missing forward declaration for sh_fdt_init() arch/sh/boards/of-generic.c | 2 ++ arch/sh/include/asm/setup.h | 1 + arch/sh/kernel/smp.c | 2 ++ 3 files changed, 5 insertions(+) Reviewed-by: John Paul Adrian Glaubitz