From patchwork Fri Jul 3 09:12:46 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 33883 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n639LuVN008948 for ; Fri, 3 Jul 2009 09:21:57 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755547AbZGCJVh (ORCPT ); Fri, 3 Jul 2009 05:21:37 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755507AbZGCJVh (ORCPT ); Fri, 3 Jul 2009 05:21:37 -0400 Received: from mail-pz0-f193.google.com ([209.85.222.193]:37316 "EHLO mail-pz0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754616AbZGCJVg (ORCPT ); Fri, 3 Jul 2009 05:21:36 -0400 Received: by pzk31 with SMTP id 31so776015pzk.33 for ; Fri, 03 Jul 2009 02:21:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :subject; bh=KgnLndqNTDMzWDXEqmK11m2v2osxmZWrAtteBR1OJGo=; b=xxn3lb3f2k2+OBnH0LfoZ2Pl6XpU2rFenihXs11sc5hFOsZEyscCSA6SZ/jFAtp2+c CpvAvI3O54ojjOtpdWYdpMnZ4oLmS1ZHL/2mNbJGEn4yr7DJ9FX09i3qK+dxo/GbWEWp 8BGTYHYsobbbilRUiyjFmh8Bax8bhaZyW0SE0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:subject; b=QsfZ0H3/9E1SugEiBH8ldu2X5mUC8eqfS5m1QB3Cc64xvznkDXQoh49CytOoe1W2KQ cobPuNTu+uME7JAPFidbqCEaR59JjQHkE4fU32oSAzuk55wk+7IvKIsjCKYG8Sf1rdPK fH6pAlJO6g2MBo0+JukZz7vqLjIz/i/SgZq3s= Received: by 10.114.159.5 with SMTP id h5mr1631079wae.201.1246612587338; Fri, 03 Jul 2009 02:16:27 -0700 (PDT) Received: from rx1.opensource.se (210.5.32.202.bf.2iij.net [202.32.5.210]) by mx.google.com with ESMTPS id n30sm5929919wag.6.2009.07.03.02.16.25 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Jul 2009 02:16:26 -0700 (PDT) From: Magnus Damm To: linux-usb@vger.kernel.org Cc: Magnus Damm , gregkh@suse.de, shimoda.yoshihiro@renesas.com, linux-sh@vger.kernel.org Date: Fri, 03 Jul 2009 18:12:46 +0900 Message-Id: <20090703091246.17296.20411.sendpatchset@rx1.opensource.se> Subject: [PATCH] usb: allow sh7724 to enable on-chip r8a66597 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org From: Magnus Damm The sh7724 processor has two on-chip r8a66597 blocks, so add it to the list of processors for SUPERH_ON_CHIP_R8A66597. Signed-off-by: Magnus Damm Acked-by: Yoshihiro Shimoda --- Tested on a sh7724 Solution Engine. And yes, to avoid this kind of patches in the future this Kconfig option should be replaced with platform data. Will fix. drivers/usb/host/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/drivers/usb/host/Kconfig +++ work/drivers/usb/host/Kconfig 2009-07-03 18:01:08.000000000 +0900 @@ -337,10 +337,10 @@ config USB_R8A66597_HCD config SUPERH_ON_CHIP_R8A66597 boolean "Enable SuperH on-chip R8A66597 USB" - depends on USB_R8A66597_HCD && (CPU_SUBTYPE_SH7366 || CPU_SUBTYPE_SH7723) + depends on USB_R8A66597_HCD && (CPU_SUBTYPE_SH7366 || CPU_SUBTYPE_SH7723 || CPU_SUBTYPE_SH7724) help This driver enables support for the on-chip R8A66597 in the - SH7366 and SH7723 processors. + SH7366, SH7723 and SH7724 processors. config USB_WHCI_HCD tristate "Wireless USB Host Controller Interface (WHCI) driver (EXPERIMENTAL)"