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=-5.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable 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 02CEFC433FF for ; Thu, 1 Aug 2019 05:58:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id C7981216C8 for ; Thu, 1 Aug 2019 05:58:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564639099; bh=18M1+P9KesdsimSQfSqq898kk6BSKJDA151IrpFkfuU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=gl4bnF7Kw0dgK1bO8aMlw5xBhwZ3A1Gv1JYe2fMJsNtJiNqCf+1u4/hvrEpLLAoFl Vz/fDL0SWFchd6CjxSWvU4A0XHUx3BsoNZFibBKlwh/Hu/yg5RBW0P9aFoJzSu57cF i8BLP1lJ23tAyyvYfEFlBczndWGSvyBKL4oq3mqg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729211AbfHAF6N (ORCPT ); Thu, 1 Aug 2019 01:58:13 -0400 Received: from mail.kernel.org ([198.145.29.99]:50776 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727540AbfHAF6N (ORCPT ); Thu, 1 Aug 2019 01:58:13 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 9C931206A2; Thu, 1 Aug 2019 05:58:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1564639092; bh=18M1+P9KesdsimSQfSqq898kk6BSKJDA151IrpFkfuU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=IhuIctS7MqfUiQKncJHIjrxZSF+/Dx0klY386/15CcNttSPWK/WXc16jf9+HVeMTG DUuwqZp4ieY7O1fs2S6Qg8S2JJ8fIE0vcE0xmzV3JU6znCfn1ZqVWviIJeyISiAgVn JXI5g2aEP0Vx7p3kRieznWXbKV8+Dekxfd4y1660= Date: Thu, 1 Aug 2019 07:58:09 +0200 From: Greg Kroah-Hartman To: Arnd Bergmann Cc: soc@kernel.org, linux-arm-kernel@lists.infradead.org, Vladimir Zapolskiy , Sylvain Lemieux , Russell King , Gregory Clement , Linus Walleij , Alan Stern , Jason Cooper , Andrew Lunn , Sebastian Hesselbarth , "David S. Miller" , Guenter Roeck , linux-gpio@vger.kernel.org, netdev@vger.kernel.org, linux-serial@vger.kernel.org, linux-usb@vger.kernel.org, linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 01/14] usb: ohci-nxp: enable compile-testing Message-ID: <20190801055809.GA24607@kroah.com> References: <20190731195713.3150463-1-arnd@arndb.de> <20190731195713.3150463-2-arnd@arndb.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190731195713.3150463-2-arnd@arndb.de> User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org On Wed, Jul 31, 2019 at 09:56:43PM +0200, Arnd Bergmann wrote: > The driver hardcodes a hardware I/O address the way one should > generally not do, and this prevents both compile-testing, and > moving the platform to CONFIG_ARCH_MULTIPLATFORM. > > Change the code to be independent of the machine headers > to allow those two. Removing the hardcoded address would > be hard and is not necessary, so leave that in place for now. > > Signed-off-by: Arnd Bergmann > --- > drivers/usb/host/Kconfig | 3 ++- > drivers/usb/host/ohci-nxp.c | 25 ++++++++++++++++++------- > 2 files changed, 20 insertions(+), 8 deletions(-) Acked-by: Greg Kroah-Hartman