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=-15.5 required=3.0 tests=BAYES_00,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 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 15BECC4363C for ; Sun, 4 Oct 2020 06:41:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BAD34206C3 for ; Sun, 4 Oct 2020 06:41:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601793692; bh=ILQfsQVN1tHzK5adkwS0WkKx124CTSJU+bhIuuvKLew=; h=Subject:To:From:Date:List-ID:From; b=rWtwaDRHj93v69ef5L2Tq70R84V9aGBDtWD9m6Tmwtasok9pI8+/dWDkH+Q/EajU8 0bw8nKK4Mrb/Watdle0FRALjpiXp0Sp2G5JiTOgJqGAAj79u2PJFalRFR9j9Jys4Iy FcdxSpC0KCXhVWHOJ9CSS6NtaevUeWqracvKtJxI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725826AbgJDGlc (ORCPT ); Sun, 4 Oct 2020 02:41:32 -0400 Received: from mail.kernel.org ([198.145.29.99]:40396 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725822AbgJDGlc (ORCPT ); Sun, 4 Oct 2020 02:41:32 -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 5DA11206A1; Sun, 4 Oct 2020 06:41:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1601793692; bh=ILQfsQVN1tHzK5adkwS0WkKx124CTSJU+bhIuuvKLew=; h=Subject:To:From:Date:From; b=WyznGnC2WNb1FDj/2CI9ScYx507GV+BeNMOiqXr19WqALmC7ju+tSWZk65r+AbmOF 0H/7OMV4v3RRr0AiZifD9GrHAlEuRa4o/OAW6F5//Taksn56EtRZ/DLCUlt+8r/5nu EYeB51H5Pp2TE6XDHoq5Paoqk6G6pxNQJMgbMqtM= Subject: patch "usb: gadget: bcm63xx_udc: fix up the error of undeclared" added to usb-next To: chunfeng.yun@mediatek.com, balbi@kernel.org, lkp@intel.com, stable@vger.kernel.org From: Date: Sun, 04 Oct 2020 08:39:32 +0200 Message-ID: <1601793572174142@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit 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 usb: gadget: bcm63xx_udc: fix up the error of undeclared to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-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 5b35dd1a5a666329192a9616ec21098591259058 Mon Sep 17 00:00:00 2001 From: Chunfeng Yun Date: Mon, 14 Sep 2020 14:17:30 +0800 Subject: usb: gadget: bcm63xx_udc: fix up the error of undeclared usb_debug_root Fix up the build error caused by undeclared usb_debug_root Cc: stable Fixes: a66ada4f241c ("usb: gadget: bcm63xx_udc: create debugfs directory under usb root") Reported-by: kernel test robot Signed-off-by: Chunfeng Yun Signed-off-by: Felipe Balbi --- drivers/usb/gadget/udc/bcm63xx_udc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/gadget/udc/bcm63xx_udc.c b/drivers/usb/gadget/udc/bcm63xx_udc.c index feaec00a3c16..9cd4a70ccdd6 100644 --- a/drivers/usb/gadget/udc/bcm63xx_udc.c +++ b/drivers/usb/gadget/udc/bcm63xx_udc.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include -- 2.28.0