From patchwork Wed Feb 19 14:47:58 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13982378 Received: from weierstrass.telenet-ops.be (weierstrass.telenet-ops.be [195.130.137.81]) (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 99A841DED55 for ; Wed, 19 Feb 2025 14:48:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.81 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739976497; cv=none; b=dyq/s1C8CEqsQ0IUgOA0TFbAW5US7nBT2HriOqx2vnTTR25KAaUtYuwsxpupylGJpHVILOK03O8G3H97OySGtxgsIKNZdzSab8kcXnsyz97ks+TFW7uvKbEkGwME0TbGzwZXdlw0M+kM442SV1GaTX4zND+s/kmbcsmRq8j68T0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739976497; c=relaxed/simple; bh=iuTi6nJ1Y4B5Y5oXJ4Bs/juLC780ovfDUBkTBKfgSRw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=LXo4BS6LJQ6oJtjnM8SP4CkeyHyoGFLprAomockOKknijt2M+fJrtISNRxaW3IsrJUB1ZyPAAEu0eTM2XjUc6ROW5uEEYwQ9XZNmezXgec85EUbs0sBPH8uTrSYRLa1tOLbwqFoDYD3CyLi3OUBi+FIQlElsQ46rCdFRLKP0chc= 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.137.81 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 andre.telenet-ops.be (andre.telenet-ops.be [IPv6:2a02:1800:120:4::f00:15]) by weierstrass.telenet-ops.be (Postfix) with ESMTPS id 4YyfQH4n5Cz4xHBY for ; Wed, 19 Feb 2025 15:48:07 +0100 (CET) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:47f6:a1ad:ad8e:b945]) by andre.telenet-ops.be with cmsmtp id FSnz2E00M57WCNj01SnzuF; Wed, 19 Feb 2025 15:47:59 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.97) (envelope-from ) id 1tklMS-0000000B3U3-3gKY; Wed, 19 Feb 2025 15:47:59 +0100 Received: from geert by rox.of.borg with local (Exim 4.97) (envelope-from ) id 1tklMl-0000000Baxh-2Bid; Wed, 19 Feb 2025 15:47:59 +0100 From: Geert Uytterhoeven To: Jens Axboe , Pavel Begunkov , David Wei , Jakub Kicinski Cc: io-uring@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] io_uring: Rename KConfig to Kconfig Date: Wed, 19 Feb 2025 15:47:58 +0100 Message-ID: <5ae387c1465f54768b51a5a1ca87be7934c4b2ad.1739976387.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: io-uring@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Kconfig files are traditionally named "Kconfig". Fixes: 6f377873cb239050 ("io_uring/zcrx: add interface queue and refill queue") Signed-off-by: Geert Uytterhoeven --- Kconfig | 2 +- io_uring/{KConfig => Kconfig} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename io_uring/{KConfig => Kconfig} (100%) diff --git a/Kconfig b/Kconfig index 529ea7694ba984b6..307e581144de32a0 100644 --- a/Kconfig +++ b/Kconfig @@ -31,4 +31,4 @@ source "lib/Kconfig.debug" source "Documentation/Kconfig" -source "io_uring/KConfig" +source "io_uring/Kconfig" diff --git a/io_uring/KConfig b/io_uring/Kconfig similarity index 100% rename from io_uring/KConfig rename to io_uring/Kconfig