Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755097Ab2KZTP1 (ORCPT ); Mon, 26 Nov 2012 14:15:27 -0500 Received: from avon.wwwdotorg.org ([70.85.31.133]:55120 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754150Ab2KZTPX (ORCPT ); Mon, 26 Nov 2012 14:15:23 -0500 Message-ID: <50B3BFC5.8070404@wwwdotorg.org> Date: Mon, 26 Nov 2012 12:15:17 -0700 From: Stephen Warren User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121028 Thunderbird/16.0.2 MIME-Version: 1.0 To: Haojian Zhuang CC: Russell King , Olof Johansson , Arnd Bergmann , John Stultz , Thomas Gleixner , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" , linux-arch@vger.kernel.org, Stephen Warren Subject: Re: [PATCH V3 11/11] ARM: delete struct sys_timer References: <1353349867-28494-1-git-send-email-swarren@wwwdotorg.org> <1353349867-28494-12-git-send-email-swarren@wwwdotorg.org> In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2086 Lines: 47 On 11/20/2012 09:43 PM, Haojian Zhuang wrote: > On Tue, Nov 20, 2012 at 2:31 AM, Stephen Warren wrote: >> From: Stephen Warren >> >> Now that the only field in struct sys_timer is .init, delete the struct, >> and replace the machine descriptor .timer field with the initialization >> function itself. >> >> This will enable moving timer drivers into drivers/clocksource without >> having to place a public prototype of each struct sys_timer object into >> include/linux; the intent is to create a single of_clocksource_init() >> function that determines which timer driver to initialize by scanning >> the device dtree, much like the proposed irqchip_init() at: >> http://www.spinics.net/lists/arm-kernel/msg203686.html ... > I checked the patch for mach-mmp. > > @@ -69,7 +65,7 @@ static const char *mmp_dt_board_compat[] __initdata = { > DT_MACHINE_START(PXA168_DT, "Marvell PXA168 (Device Tree Support)") > .map_io = mmp_map_io, > .init_irq = mmp_dt_irq_init, > - .timer = &mmp_dt_timer, > + .init_time = mmp_dt_init_timer, > .init_machine = pxa168_dt_init, > .dt_compat = mmp_dt_board_compat, > MACHINE_END > @@ -77,7 +73,7 @@ MACHINE_END > DT_MACHINE_START(PXA910_DT, "Marvell PXA910 (Device Tree Support)") > .map_io = mmp_map_io, > .init_irq = mmp_dt_irq_init, > - .timer = &mmp_dt_timer, > + .init_time = mmp_dt_timer_init, > .init_machine = pxa910_dt_init, > .dt_compat = mmp_dt_board_compat, > MACHINE_END > > This first init_time is assigned by mmp_dt_init_timer. But the second > init_time is > assigned by mmp_dt_timer_init. I think it's a typo error. Could you > help to fix this? Thanks, I've fixed that up locally. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/