From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 31F62C43331 for ; Tue, 12 Nov 2019 18:28:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F299A21783 for ; Tue, 12 Nov 2019 18:28:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573583289; bh=BnVIiha0vBv35TRF84iiovBTeHI4NW1hQEFE1vbhfuI=; h=Subject:To:From:Date:List-ID:From; b=Lp9XOfBbYoRY7OithhuYJQrsaj3SteOVEEWbAyUV2WA/WH3xiKXzSMGSc8kt6IfCY moUEKCh+oW6JVNriFHb/5aPJxAU2xgfwF5WuREg49Gj332hZgs8TONx4gd71y2AW7j sv9uEK7h0Qs/fkXmGCVjY68Bt6Ya2pfuN6C07U3E= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726912AbfKLS2I (ORCPT ); Tue, 12 Nov 2019 13:28:08 -0500 Received: from mail.kernel.org ([198.145.29.99]:52586 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726718AbfKLS2I (ORCPT ); Tue, 12 Nov 2019 13:28:08 -0500 Received: from localhost (unknown [77.241.229.232]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4C855206BA; Tue, 12 Nov 2019 18:28:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573583287; bh=BnVIiha0vBv35TRF84iiovBTeHI4NW1hQEFE1vbhfuI=; h=Subject:To:From:Date:From; b=JYhhI7/mLEAKqZ7R4ATl1q4BrCnahNElXrMCIDrMxWON5HRfhjHsXcrpt6sjh3r2r q19h+UqRU3UV0mkoYllz5ihG5Ru+0Et4brhAnwKDD5VvfphpVvldppLLkI/plv/uM6 zAQnznlTd3XOJYrdWlFAeSUfaguWwOIcOnZmWZnA= Subject: patch "staging: rtl8723bs: Drop ACPI device ids" added to staging-next To: hdegoede@redhat.com, gregkh@linuxfoundation.org, stable@vger.kernel.org From: Date: Tue, 12 Nov 2019 19:23:53 +0100 Message-ID: <157358303318248@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled staging: rtl8723bs: Drop ACPI device ids to my staging git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git in the staging-next branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will also be merged in the next major kernel release during the merge window. If you have any questions about this process, please let me know. >From 2d9d2491530a156b9a5614adf9dc79285e35d55e Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Mon, 11 Nov 2019 12:38:46 +0100 Subject: staging: rtl8723bs: Drop ACPI device ids The driver only binds by SDIO device-ids, all the ACPI device-id does is causing the driver to load unnecessarily on devices where the DSDT contains a bogus OBDA8723 device. Signed-off-by: Hans de Goede Cc: stable Link: https://lore.kernel.org/r/20191111113846.24940-2-hdegoede@redhat.com Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723bs/os_dep/sdio_intf.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c index c48d2df97285..859f4a0afb95 100644 --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c @@ -24,13 +24,7 @@ static const struct sdio_device_id sdio_ids[] = { SDIO_DEVICE(0x024c, 0xb723), }, { /* end: all zeroes */ }, }; -static const struct acpi_device_id acpi_ids[] = { - {"OBDA8723", 0x0000}, - {} -}; - MODULE_DEVICE_TABLE(sdio, sdio_ids); -MODULE_DEVICE_TABLE(acpi, acpi_ids); static int rtw_drv_init(struct sdio_func *func, const struct sdio_device_id *id); static void rtw_dev_remove(struct sdio_func *func); -- 2.24.0