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=-9.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT 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 63BA5C55178 for ; Tue, 27 Oct 2020 16:10:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 31ED6207C4 for ; Tue, 27 Oct 2020 16:10:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603815017; bh=rozxnVf81Em0tR+ad5yS6RN+XWIJ4mwYZE4do9mDHPI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=l/iLNVr7fHtKQ+wdopgtwRw9AhIYYf9tyLLRPp/AJi6v017vQ9mp7kagVajQUgXu2 jZNreSe5cuwRDemi7FfRhBZY1Ukk1vtBpsanWlfmZPMXbe/tozZMydw2idD+t6YTRU SlnK/ACoHmKV1jq/vdYX1tQsCVP1ShAK6c8oMAtk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1804281AbgJ0QKN (ORCPT ); Tue, 27 Oct 2020 12:10:13 -0400 Received: from mail.kernel.org ([198.145.29.99]:56352 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1804290AbgJ0Py2 (ORCPT ); Tue, 27 Oct 2020 11:54:28 -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 9CB9820678; Tue, 27 Oct 2020 15:54:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603814068; bh=rozxnVf81Em0tR+ad5yS6RN+XWIJ4mwYZE4do9mDHPI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=07iIeAiNWNnbXxesbTgFI3TXV2klus1l4z9Dn4r+BIiQa9ZQ0TXzvNgM+6txZd5l5 TvmONaBeDSLSv1WDJH4w63IyhmR/4oSWzXTCMLsE5zkd8GywJGX1PJKnDHvtC/Ye+h zUV+EBIUlMpv2SokzWxJdej/cgRhPgFHB905+dvQ= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, kernel test robot , Chunfeng Yun , Felipe Balbi Subject: [PATCH 5.9 752/757] usb: gadget: bcm63xx_udc: fix up the error of undeclared usb_debug_root Date: Tue, 27 Oct 2020 14:56:42 +0100 Message-Id: <20201027135525.788823067@linuxfoundation.org> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201027135450.497324313@linuxfoundation.org> References: <20201027135450.497324313@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Chunfeng Yun commit 5b35dd1a5a666329192a9616ec21098591259058 upstream. 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 Signed-off-by: Greg Kroah-Hartman --- drivers/usb/gadget/udc/bcm63xx_udc.c | 1 + 1 file changed, 1 insertion(+) --- 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