| To: | "Ralf Baechle" <ralf@linux-mips.org> |
|---|---|
| Subject: | Re: [PATCH 3/5] Deforest the function pointer jungle in the time code. |
| From: | "Franck Bui-Huu" <vagabon.xyz@gmail.com> |
| Date: | Wed, 20 Jun 2007 12:27:40 +0200 |
| Cc: | "Sergei Shtylyov" <sshtylyov@ru.mvista.com>, "Atsushi Nemoto" <anemo@mba.ocn.ne.jp>, macro@linux-mips.org, linux-mips@linux-mips.org |
| Dkim-signature: | a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=JlUhluXYH/u7yydPSV71LqTh7MM9z60Dor+jnIQY8YxEJlUUd0ibcLshvS9MXqCod3JFOWO1dbLTms3Zi07wovfMAcX8Xuv1wwvJ1MZWduppJCos8XXAVzAqpSpNlLBO2Maz89flefDcdToePxwHSaVWiIdA15VsmIrxtYoGzTI= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bLR0k3oeO2l/aOlXb3zXMjsNkx9N7zAnGxc1ocB4eK2DcTIkkvja6Kb1FpPz2usMzgptbZScLz16T4GheZGPSZMpnNUZ8eyQMulQ/Pb2koCRCCqj5YwZoOvGiKswE+YQqixfbrNiTRbHqQ28+tBKsmu4PhfZWaKFVl2EyttdvUQ= |
| In-reply-to: | <20070619215859.GA11831@linux-mips.org> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <cda58cb80706180238r17da4434jcdee307b0385729b@mail.gmail.com> <20070619.005121.118948229.anemo@mba.ocn.ne.jp> <cda58cb80706190033y47ccec58u8fc8254ced24f96f@mail.gmail.com> <20070620.010805.23009775.anemo@mba.ocn.ne.jp> <467802E3.4040703@ru.mvista.com> <20070619215859.GA11831@linux-mips.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
On 6/19/07, Ralf Baechle <ralf@linux-mips.org> wrote: For practically every type of timer there are reasons why it is may be undesierable such as being configured in a way that makes it undesirable or unusable, unpredictable clock changes and more. So in practice only the platform specific code can drive the initialization of all timer devices and interrupts which reduces the generic code to sort of a library and driver collection.
Yeah that's true. If you look at time_init() arch hook after patch 5/5
is applied, you can see that it's now:
void __init time_init(void)
{
plat_time_init();
plat_timer_setup();
}
--
Franck
|
| Previous by Date: | Re: [PATCH 3/5] Deforest the function pointer jungle in the time code., Franck Bui-Huu |
|---|---|
| Next by Date: | Re: [PATCH 1/12] mips: PMC MSP71xx core platform, Ralf Baechle |
| Previous by Thread: | Re: [PATCH 3/5] Deforest the function pointer jungle in the time code., Ralf Baechle |
| Next by Thread: | Re: [PATCH 3/5] Deforest the function pointer jungle in the time code., Franck Bui-Huu |
| Indexes: | [Date] [Thread] [Top] [All Lists] |