From patchwork Tue Apr 9 17:48:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergei Shtylyov X-Patchwork-Id: 2416291 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 A09C23FD8C for ; Tue, 9 Apr 2013 17:50:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754499Ab3DIRuF (ORCPT ); Tue, 9 Apr 2013 13:50:05 -0400 Received: from mail-la0-f42.google.com ([209.85.215.42]:35752 "EHLO mail-la0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751809Ab3DIRuE (ORCPT ); Tue, 9 Apr 2013 13:50:04 -0400 Received: by mail-la0-f42.google.com with SMTP id fe20so6744466lab.1 for ; Tue, 09 Apr 2013 10:50:02 -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=q0rugocCDsee6YA5U4inDFBfmKry1daT5vtqXZ9yitc=; b=YPpLQOpqZgUrmmZlL++upQjjO97uoC+wK3KPugmUmv3Sr1hE1Ph5HKrAjbz5QpiXnE QFr0INvWNu73eogkxGMYJ0WCjl0aEpNDZ/Bixaq1IiFX2PCM4E8pZKljSOb70T32HHN+ e4YY841hFiPqJOWK458FrbK6oV/RGE0vNDHw7Hp8MAH6kZprsL/aJLzgwAsxXrlXXIxu EugcqBKbEg/z/Rx+GAJ7N7stiA7MmTVOfpwS+HUh/jsyYRnjtoGpFBbp9Ci1+me/YZ2a vGM+3+QglZkbN7J4l4k6tv9Nvy1XoPN4QLa+ZtyjD35T1Q5ATA16JQPzy+y6LZaa+0+0 t8Cg== X-Received: by 10.112.74.193 with SMTP id w1mr14160808lbv.125.1365529801931; Tue, 09 Apr 2013 10:50:01 -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 xx3sm5485674lbb.14.2013.04.09.10.50.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 09 Apr 2013 10:50:01 -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 2/2] ARM: shmobile: R8A7779: fix Ether device name From: Sergei Shtylyov Organization: Cogent Embedded Date: Tue, 9 Apr 2013 21:48:59 +0400 MIME-Version: 1.0 Message-Id: <201304092149.00465.sergei.shtylyov@cogentembedded.com> X-Gm-Message-State: ALoCoQmMFGMuyp1JMy8ZkP5Zdma8mUnaqLSyWoo4FYnTGEZXXptOXy0Nwt9ijIJgRURZZLzo3Ker 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: R8A7779: 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-r8a7779.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-r8a7779.c =================================================================== --- renesas.orig/arch/arm/mach-shmobile/setup-r8a7779.c +++ renesas/arch/arm/mach-shmobile/setup-r8a7779.c @@ -443,7 +443,7 @@ void __init r8a7779_add_standard_devices void __init r8a7779_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));