From nobody Wed Apr 1 22:08:21 2026 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (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 7946535CBD6 for ; Wed, 1 Apr 2026 15:08:30 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=159.69.126.157 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775056111; cv=none; b=cBt9xslYzZegk97bmAdDrUFqHEefDh/hm/z3kPlOo8KG3KwUvh3lGmG+QPgvlHpZQjJqgZNb8hkEj/9ZrZCuxUYItz9TzeyG8nIz+cYn9MSbrJM0pxpial+Xw2hOeov5102oplkIxBCPF9X54LJ2HaQHFqbVkbVMF1PgkjsoQsc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775056111; c=relaxed/simple; bh=YcbamPWR+Zhm0Sagl9BbuIyMYbdwOmJyGEdqmEwVH3I=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=Evce94lFLy2Fp4tNZfe0cpf/YJBZPXK4q5T3P6oMlGB8PfTlNiAzJI0zSZEJ2xrWJMtStQDbclK285u8ugqBtKjdqvnKHEYQNVBPbmtjBa+W6OgfB8oAthGuH9bFWrPzuEBZ/lGTgQHur3g6A7iSUJ3el4e8KdU49S2rpEfxXD8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net; spf=pass smtp.mailfrom=weissschuh.net; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b=bkVq4wNa; arc=none smtp.client-ip=159.69.126.157 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b="bkVq4wNa" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1775056108; bh=YcbamPWR+Zhm0Sagl9BbuIyMYbdwOmJyGEdqmEwVH3I=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=bkVq4wNaMqnEcLeZNdLJ+5GkUlqAOX3+ngujJGsXLs0nJYXh7YIUY3feGzxY9hjO5 tj2O3tbqsipDTaPVjAOkGmnX6sMwIr/hfCvc9IzZeGwMDSz6rF5YXqWYv9NkZ3pfjp FvWo4GcL3VBID9KJAsngzZIFJZobiOQ1y0+X2vo0= From: =?utf-8?q?Thomas_Wei=C3=9Fschuh?= Date: Wed, 01 Apr 2026 17:08:30 +0200 Subject: [PATCH 3/4] tools/nolibc: drop superfluous definition of Q Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20260401-nolibc-cleanup-v1-3-bcf4c9f5c1be@weissschuh.net> References: <20260401-nolibc-cleanup-v1-0-bcf4c9f5c1be@weissschuh.net> In-Reply-To: <20260401-nolibc-cleanup-v1-0-bcf4c9f5c1be@weissschuh.net> To: Willy Tarreau Cc: linux-kernel@vger.kernel.org, =?utf-8?q?Thomas_Wei=C3=9Fschuh?= X-Mailer: b4 0.15.1 X-Developer-Signature: v=1; a=ed25519-sha256; t=1775056108; l=685; i=linux@weissschuh.net; s=20221212; h=from:subject:message-id; bh=YcbamPWR+Zhm0Sagl9BbuIyMYbdwOmJyGEdqmEwVH3I=; b=IorOGS4KP1s+LzZcwjK12vzeHtktqTozCMqkb0Z3nO6qmGYxB/Lnxjf+6EHeNyH6ohaEdjA+i smZev5ucfvqA8utQQ8HvWdcFlKTl2meun16KQi6DoRHLDCheN6BTs2c X-Developer-Key: i=linux@weissschuh.net; a=ed25519; pk=KcycQgFPX2wGR5azS7RhpBqedglOZVgRPfdFSPB1LNw= Q is already defined by tools/scripts/Makefile.include which is included at the top of tools/include/nolibc/Makefile. Signed-off-by: Thomas Wei=C3=9Fschuh --- tools/include/nolibc/Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/include/nolibc/Makefile b/tools/include/nolibc/Makefile index df9304e6d818..56343fdbdb2f 100644 --- a/tools/include/nolibc/Makefile +++ b/tools/include/nolibc/Makefile @@ -17,12 +17,6 @@ endif # it defaults to this nolibc directory. OUTPUT ?=3D $(CURDIR)/ =20 -ifeq ($(V),1) -Q=3D -else -Q=3D@ -endif - arch_files :=3D arch.h $(wildcard arch-*.h) all_files :=3D \ compiler.h \ --=20 2.53.0