From patchwork Tue Sep 11 15:06:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 10595787 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 8298114F9 for ; Tue, 11 Sep 2018 15:06:05 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 724B32945B for ; Tue, 11 Sep 2018 15:06:05 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 65C7529762; Tue, 11 Sep 2018 15:06:05 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 13E0B296BF for ; Tue, 11 Sep 2018 15:06:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726941AbeIKUFq (ORCPT ); Tue, 11 Sep 2018 16:05:46 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:39722 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726622AbeIKUFp (ORCPT ); Tue, 11 Sep 2018 16:05:45 -0400 Received: from avalon.bb.dnainternet.fi (dfj612ybrt5fhg77mgycy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:2e86:4862:ef6a:2804]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id CAC57992; Tue, 11 Sep 2018 17:06:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1536678362; bh=DLHOH0MhR7ZccQ59xcBjXhKwTEV8iNv+mHel9CULLmg=; h=From:To:Cc:Subject:Date:From; b=NGtDl+CbV62YyrRbOQTQubVmgLUoTkGNcc8N5bbUu7eRZ6ZWhsiq46TcgIc+lonzx zQLL3XHov/9VpoQRbc+21/8Y5wfmGqggSWunE8dngrDQW1wO9DzOlEMt72zIJ6WPxN nSfHFQab0d/tXyKpB9/EoLYabstwc+dN8P6crZgU= From: Laurent Pinchart To: linux-usb@vger.kernel.org, linux-omap@vger.kernel.org Cc: Tony Lindgren , Roger Quadros , Lee Jones , Tomi Valkeinen Subject: [PATCH 0/3] Fix OMAP EHCI probe & assorted cleanups Date: Tue, 11 Sep 2018 18:06:07 +0300 Message-Id: <20180911150610.27510-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.16.4 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hello, This series fixes a v4.19-rc1 regression that results in OMAP EHCI failing to probe (patch 1/3) and then moves on to cleaning up related code (patches 2/3 and 3/3). The first patch is a regression fix and should thus be merged before v4.19. The other two patches can wait until v4.20. Tony, as patch 1/3 fixes a problem introduced by one of your DT changes, could you please review it ? Out of curiosity, is ethernet on the Pandaboard not part of your regression tests ? Lee, could you then please make sure the patch gets to mainline before v4.19 final ? Laurent Pinchart (3): mfd: omap-usb-host: Use regular platform device probe mechanism ARM: OMAP2+: Remove legacy USB initialization code mfd: omap-usb-host: Drop support for non-DT probe arch/arm/mach-omap2/common.h | 2 - arch/arm/mach-omap2/omap_phy_internal.c | 96 +----------------- arch/arm/mach-omap2/usb.h | 71 ------------- drivers/mfd/omap-usb-host.c | 175 +++----------------------------- include/linux/platform_data/usb-omap.h | 4 - 5 files changed, 18 insertions(+), 330 deletions(-) delete mode 100644 arch/arm/mach-omap2/usb.h Tested-by: Laurent Pinchart