From patchwork Mon Sep 21 16:28:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 11790487 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A930D618 for ; Mon, 21 Sep 2020 16:33:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 88391239D0 for ; Mon, 21 Sep 2020 16:33:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600706001; bh=kcpOePPk9Oa0xA+RHgt1wPgGHNQUOeL2zZ/g8BSu8Fo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=pgRe6bu1rTUpGgTWnoVRIBlYS400/gRLQacBc6FsH8idK+zdqZb8MZdQTOyBMVhBW TMGMFnITbNmRj7HX+oi0SXRnDM/wsRXOux2dSxQa7Tul/+pHDaKBEkc4IMDJjPSp1O T6G/BAVIy3MKz9EUbUgm56jKV/79GFHj2TuWWfAg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728602AbgIUQdR (ORCPT ); Mon, 21 Sep 2020 12:33:17 -0400 Received: from mail.kernel.org ([198.145.29.99]:59324 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728599AbgIUQdQ (ORCPT ); Mon, 21 Sep 2020 12:33:16 -0400 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (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 7802B2396F; Mon, 21 Sep 2020 16:33:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1600705996; bh=kcpOePPk9Oa0xA+RHgt1wPgGHNQUOeL2zZ/g8BSu8Fo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=igcBcA6KAeOtWunDaMFF0CiXCWYbBW7gXe9rY/ooMiGynOy7/gWgCBUDjWYxeR8zr bOCjuVbDQsf92x790HagIcEgZDtleCHjouAEPEtBD4c2SS0Sy4R9bKGlxJtkf15aNk tXIOvRXvIIHaoBWGq9BL8BSs/0awrHXBif/7O7ng= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Adam Borowski , Linus Torvalds , Peter Zijlstra , Thomas Gleixner , linux-usb@vger.kernel.org, Ingo Molnar , Andy Shevchenko Subject: [PATCH 4.4 46/46] x86/defconfig: Enable CONFIG_USB_XHCI_HCD=y Date: Mon, 21 Sep 2020 18:28:02 +0200 Message-Id: <20200921162035.393246797@linuxfoundation.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20200921162033.346434578@linuxfoundation.org> References: <20200921162033.346434578@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org From: Adam Borowski commit 72a9c673636b779e370983fea08e40f97039b981 upstream. A spanking new machine I just got has all but one USB ports wired as 3.0. Booting defconfig resulted in no keyboard or mouse, which was pretty uncool. Let's enable that -- USB3 is ubiquitous rather than an oddity. As 'y' not 'm' -- recovering from initrd problems needs a keyboard. Also add it to the 32-bit defconfig. Signed-off-by: Adam Borowski Cc: Greg Kroah-Hartman Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Cc: linux-usb@vger.kernel.org Link: http://lkml.kernel.org/r/20181009062803.4332-1-kilobyte@angband.pl Signed-off-by: Ingo Molnar Cc: Andy Shevchenko Signed-off-by: Greg Kroah-Hartman --- arch/x86/configs/i386_defconfig | 1 + arch/x86/configs/x86_64_defconfig | 1 + 2 files changed, 2 insertions(+) --- a/arch/x86/configs/i386_defconfig +++ b/arch/x86/configs/i386_defconfig @@ -247,6 +247,7 @@ CONFIG_USB_HIDDEV=y CONFIG_USB=y CONFIG_USB_ANNOUNCE_NEW_DEVICES=y CONFIG_USB_MON=y +CONFIG_USB_XHCI_HCD=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_TT_NEWSCHED=y CONFIG_USB_OHCI_HCD=y --- a/arch/x86/configs/x86_64_defconfig +++ b/arch/x86/configs/x86_64_defconfig @@ -241,6 +241,7 @@ CONFIG_USB_HIDDEV=y CONFIG_USB=y CONFIG_USB_ANNOUNCE_NEW_DEVICES=y CONFIG_USB_MON=y +CONFIG_USB_XHCI_HCD=y CONFIG_USB_EHCI_HCD=y CONFIG_USB_EHCI_TT_NEWSCHED=y CONFIG_USB_OHCI_HCD=y