From patchwork Wed Oct 13 07:22:11 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 249811 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9D7Jx9e002672 for ; Wed, 13 Oct 2010 07:19:59 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753127Ab0JMHTz (ORCPT ); Wed, 13 Oct 2010 03:19:55 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:37503 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753121Ab0JMHTz (ORCPT ); Wed, 13 Oct 2010 03:19:55 -0400 Received: by pwi4 with SMTP id 4so95454pwi.19 for ; Wed, 13 Oct 2010 00:19:54 -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=QJ7wGhifWt9tks+UemRniWgZdSc0thHoQvAWmql+of4=; b=pMrcDPcIQuNPDuYVG5PVSEDQ+3Pl/o91U21rvZXJ7WneXGbVcFiH9TmdjPHAtRtWNT eXEiEDEGIY935JGpE3Pi2Zs3DEBN0I2FBHdn+ahnT8/7ZtRa84c0S6raJ0MUzVNLnveV 8Ca6ijg+a+xseWWpTs2wOKMmjMRlcqGUg1ePg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:subject; b=IKgYOq52w0BwjMXVHzQHRJGZ5rdL7hAbcZGGQgU9wdPgGQLxN+LV0emsWuQVjNzUIX XJ4Zly3mcdjmy6dJUn/uZTJKx4dSCPWipoClLFTn/oqN1rYbjXAVNRSJ9CWFvJ/u2CrY BHnKy6+JqxEtIpN2orj6rjzuIaNiN0VB+TzD0= Received: by 10.142.147.5 with SMTP id u5mr3224100wfd.93.1286954394635; Wed, 13 Oct 2010 00:19:54 -0700 (PDT) Received: from [127.0.0.1] (49.14.32.202.bf.2iij.net [202.32.14.49]) by mx.google.com with ESMTPS id e14sm4438502wfg.20.2010.10.13.00.19.52 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 13 Oct 2010 00:19:53 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: Magnus Damm , lethal@linux-sh.org Date: Wed, 13 Oct 2010 16:22:11 +0900 Message-Id: <20101013072211.19725.56630.sendpatchset@t400s> Subject: [PATCH] ARM: shmobile: break out sh7372 platform devices Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 13 Oct 2010 07:19:59 +0000 (UTC) --- 0003/arch/arm/mach-shmobile/setup-sh7372.c +++ work/arch/arm/mach-shmobile/setup-sh7372.c 2010-10-13 15:35:44.000000000 +0900 @@ -527,6 +527,9 @@ static struct platform_device *sh7372_ea &scif5_device, &scif6_device, &cmt10_device, +}; + +static struct platform_device *sh7372_late_devices[] __initdata = { &iic0_device, &iic1_device, &dma0_device, @@ -538,6 +541,9 @@ void __init sh7372_add_standard_devices( { platform_add_devices(sh7372_early_devices, ARRAY_SIZE(sh7372_early_devices)); + + platform_add_devices(sh7372_late_devices, + ARRAY_SIZE(sh7372_late_devices)); } void __init sh7372_add_early_devices(void)