From patchwork Tue May 7 01:12:33 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 10932159 X-Patchwork-Delegate: jikos@jikos.cz Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id DE67814DB for ; Tue, 7 May 2019 01:12:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C12F9288D2 for ; Tue, 7 May 2019 01:12:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B1D6F288AF; Tue, 7 May 2019 01:12:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=2.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 349A9288AF for ; Tue, 7 May 2019 01:12:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726236AbfEGBMo (ORCPT ); Mon, 6 May 2019 21:12:44 -0400 Received: from merlin.infradead.org ([205.233.59.134]:60574 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726073AbfEGBMo (ORCPT ); Mon, 6 May 2019 21:12:44 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=EVC3BpEjyh8qUjLJcfezk7LUY08zh9RWK3mttq4RcxA=; b=1/vz+TzWsUviNjHbGiK5R/OJC3 t2u1uREHk8sbnZwmcMyunzIuLraV/+5eEAQBlm6kWWpgcW6wJOAAvzEjFgCa5FnUyHNvztwiEBHi0 U17zGdqMAdbcpwLLSBtlZdYd4HPm7nyqbGSv8BkK8FzW4StOu6zXm84+7+MG6oR0JqbXGZYzwIIh5 1rml0rXYIMio25eJ8bLNkVj+IcdEOthWQwE7P7GAdTrSJXKvsGmEyL9EU5VilbZmOOjywZesO98Vb ti3PceiBRBgIrB8/a+KCW1t+WpxlWKa6p/BbA561te1MU/NHYybmCLG15LDdQcWf33dTGgOMiPF9/ J22v42ow==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=dragon.dunlab) by merlin.infradead.org with esmtpsa (Exim 4.90_1 #2 (Red Hat Linux)) id 1hNoep-0002A9-14; Tue, 07 May 2019 01:12:35 +0000 To: LKML , Andrew Morton Cc: "linux-input@vger.kernel.org" , Jiri Kosina , Benjamin Tissoires , kbuild test robot From: Randy Dunlap Subject: [PATCH -next] hid: fix hid-logitech-dj build error Message-ID: Date: Mon, 6 May 2019 18:12:33 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 Content-Language: en-US Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix build error in hid-logitech-dj by making it depend on USB_HID, like several other HID drivers do. Fixes this build error: ERROR: "usb_hid_driver" [drivers/hid/hid-logitech-dj.ko] undefined! Reported-by: kbuild test robot Signed-off-by: Randy Dunlap Cc: Jiri Kosina Cc: Benjamin Tissoires Cc: linux-input@vger.kernel.org Cc: Andrew Morton --- drivers/hid/Kconfig | 1 + 1 file changed, 1 insertion(+) --- mmotm-2019-0425-1630.orig/drivers/hid/Kconfig +++ mmotm-2019-0425-1630/drivers/hid/Kconfig @@ -522,6 +522,7 @@ config HID_LOGITECH config HID_LOGITECH_DJ tristate "Logitech Unifying receivers full support" depends on HIDRAW + depends on USB_HID depends on HID_LOGITECH select HID_LOGITECH_HIDPP ---help---