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 02B56C2CD for ; Tue, 17 Oct 2023 08:13:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="PbwrsftL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1225AC433C8; Tue, 17 Oct 2023 08:13:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1697530406; bh=46LFzxJ8kVX8In6gN8/8l3XSFq9NXQixEzzsEgPJrZI=; h=From:To:Cc:Subject:Date:From; b=PbwrsftLLcm9eKRbpFoh1Xo1EVbsmerWJ7QUrWDhUzstBQtj4BXm8dscZkc9KbtS7 p+6wmy534ZJEdBP4PsSK5Qf1zm4rYF8eDbM358IwHNGD1yRTyA0CKMjUKYjlfKEhpF ZUhBub3R+RYdT3YKlIBHeC5vHThTHtdKj9wtLN/g= From: Greg Kroah-Hartman To: linux-staging@lists.linux.dev Cc: linux-kernel@vger.kernel.org, Greg Kroah-Hartman , Thorsten Leemhuis , Philipp Hortmann , Arnd Bergmann Subject: [PATCH] staging: rtl8192u: remove entry from Makefile Date: Tue, 17 Oct 2023 10:13:10 +0200 Message-ID: <2023101709-amuck-upward-46f1@gregkh> X-Mailer: git-send-email 2.42.0 Precedence: bulk X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=1187; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=46LFzxJ8kVX8In6gN8/8l3XSFq9NXQixEzzsEgPJrZI=; b=owGbwMvMwCRo6H6F97bub03G02pJDKl6TqJebl+2HHpdV39+YSRnb33SqT8u+sdnx/Avt0nIy tvwXKOnI5aFQZCJQVZMkeXLNp6j+ysOKXoZ2p6GmcPKBDKEgYtTACaSxsYwz0hY4Pa6qMf71d7U aJRvet/EFX5/NsOCGbfEZp23bXOaNaX9JefSreYzNeXUAQ== X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit In commit 697455ce4110 ("staging: rtl8192u: Remove broken driver"), the driver was removed, along with the Kconfig entry, but the Makefile line in drivers/staging/Makefile was not updated, so things like 'make clean' fail to work properly as they will decend into all subdirectories to try to clean things up. Resolve this by removing the entry in the main staging Makefile. Reported-by: Thorsten Leemhuis Cc: Philipp Hortmann Cc: Arnd Bergmann Fixes: 697455ce4110 ("staging: rtl8192u: Remove broken driver") Signed-off-by: Greg Kroah-Hartman --- drivers/staging/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile index ffa70dda481d..0f6379436443 100644 --- a/drivers/staging/Makefile +++ b/drivers/staging/Makefile @@ -4,7 +4,6 @@ obj-y += media/ obj-$(CONFIG_PRISM2_USB) += wlan-ng/ obj-$(CONFIG_FB_OLPC_DCON) += olpc_dcon/ -obj-$(CONFIG_RTL8192U) += rtl8192u/ obj-$(CONFIG_RTL8192E) += rtl8192e/ obj-$(CONFIG_RTL8723BS) += rtl8723bs/ obj-$(CONFIG_R8712U) += rtl8712/ -- 2.42.0