From patchwork Tue Apr 9 17:47:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2416271 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id F19223FD8C for ; Tue, 9 Apr 2013 17:48:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759308Ab3DIRsz (ORCPT ); Tue, 9 Apr 2013 13:48:55 -0400 Received: from mail-lb0-f169.google.com ([209.85.217.169]:65296 "EHLO mail-lb0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751809Ab3DIRsz (ORCPT ); Tue, 9 Apr 2013 13:48:55 -0400 Received: by mail-lb0-f169.google.com with SMTP id p11so7124371lbi.28 for ; Tue, 09 Apr 2013 10:48:53 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:to:subject:from:organization:date:mime-version :content-type:content-transfer-encoding:message-id :x-gm-message-state; bh=lV+5y/gyMOjaX3r9oQYrwjSfrZWCcBcHoF42Hlv0uZI=; b=H03DxP7jwdJ6Rxc9eO07fdWi9+UTzeTvXFxEHRm4B5T0by0xj58sHtw0lDuz9sSRQR TFz2Iy2RXsIX/NF5xk0iLi8IHs7tBVkQGcXPi3YZn7E3iqvvL/nWVnI7duDGgVFD9xQM KIvXoKeHQtTo+UFc3oG9i1jwmkvhQnKpVye7AQtMe81wa4CupeOgNcmNwa4SBEK5PAAt RWWnlAWzcWXFX7bnZ1qj2i4fNfAX9Evbpb0Jczzt+OyRdvYkCrav21gf8+4/ZXuVS4oX aBlqELbeMyF9PgDR5geBPdYpMFXNeBJ3GNyZmc8sdw18s+4pIdGJ/tb6B4FAgqJbYspy 1gtQ== X-Received: by 10.112.39.138 with SMTP id p10mr14306780lbk.31.1365529733518; Tue, 09 Apr 2013 10:48:53 -0700 (PDT) Received: from wasted.dev.rtsoft.ru (ppp91-79-87-206.pppoe.mtu-net.ru. [91.79.87.206]) by mx.google.com with ESMTPS id xw14sm13343493lab.6.2013.04.09.10.48.51 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 09 Apr 2013 10:48:52 -0700 (PDT) To: horms@verge.net.au, magnus.damm@gmail.com, linux@arm.linux.org.uk, linux-sh@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH 1/2] ARM: shmobile: R8A7778: fix Ether device name From: Sergei Shtylyov Organization: Cogent Embedded Date: Tue, 9 Apr 2013 21:47:51 +0400 MIME-Version: 1.0 Message-Id: <201304092147.51621.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQnmhz0lPUyEWixhz5yCbzvStGqLn+W7vlhDKT6Bh296kxGKIKFPBfeVL8hoamocWizsCFpH Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org While recasting the commit "ARM: shmobile: R8A7778: add Ether support", I made a typo in the platform device's name: used underscore instead of hyphen. Signed-off-by: Sergei Shtylyov --- The patch is atop of the 'renesas-next-20130410' tag of the 'renesas.git' tree. arch/arm/mach-shmobile/setup-r8a7778.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 Index: renesas/arch/arm/mach-shmobile/setup-r8a7778.c =================================================================== --- renesas.orig/arch/arm/mach-shmobile/setup-r8a7778.c +++ renesas/arch/arm/mach-shmobile/setup-r8a7778.c @@ -96,7 +96,7 @@ static struct resource ether_resources[] void __init r8a7778_add_ether_device(struct sh_eth_plat_data *pdata) { - platform_device_register_resndata(&platform_bus, "sh_eth", -1, + platform_device_register_resndata(&platform_bus, "sh-eth", -1, ether_resources, ARRAY_SIZE(ether_resources), pdata, sizeof(*pdata));