| To: | Arnaud Patard <apatard@mandriva.com> |
|---|---|
| Subject: | Re: [PATCH 2/2] [loongson] fuloong: add RTC_LIB Support |
| From: | Wu Zhangjin <wuzhangjin@gmail.com> |
| Date: | Thu, 05 Nov 2009 08:37:23 +0800 |
| Cc: | Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org, rtc-linux@googlegroups.com |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc :in-reply-to:references:content-type:organization:date:message-id :mime-version:x-mailer:content-transfer-encoding; bh=qlyOp/tMpKSzF2liOHuc9GT7/qcuKuT/k5VVbnEiiEs=; b=t5OH9EletdWzU7ueg2uTtPN32yp5spzSzRdHMxCUrxeZC6PqNsV94vl3eA+ExlTdEZ jJsYnZNKc1qJ2gzd30QAUmkAKW2dYzd7g8jhyvL/yF9e4ylSVMAgnM7O2xxsvt3jSjPl ijN/+pyq8QjE2Y/HlCILEBqN4edTboDXh/JlE= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type :organization:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=SGcByZXWn0BprzcoS1YPfEraVhtIJL8R25PtxN+QO52Vu1UQX1rvABsy4nVWg9smgq nVMOmjTtoOJNGD23IOdfMCz/Ig3/+6aOVUJkij8e21SbA4YkZAQofMqClFkM7YVdQ/7A 6RlLduzNV4b0Cl9HCiYR8GbicqULBPJAr7GUs= |
| In-reply-to: | <m31vketgyw.fsf@anduin.mandriva.com> |
| Organization: | DSLab, Lanzhou University, China |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1257349784-21444-1-git-send-email-wuzhangjin@gmail.com> <m31vketgyw.fsf@anduin.mandriva.com> |
| Reply-to: | wuzhangjin@gmail.com |
| Sender: | linux-mips-bounce@linux-mips.org |
Hi,
On Wed, 2009-11-04 at 17:03 +0100, Arnaud Patard wrote:
> Wu Zhangjin <wuzhangjin@gmail.com> writes:
> Hi,
>
> > + * Registration of Cobalt RTC platform device.
>
> Of Cobalt platform device ? I thought we were on loongson :)
>
Ooh, I just copied the header ;) will remove it later.
> > + *
> > + * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
> > + * Copyright (C) 2009 Wu Zhangjin <wuzj@lemote.com>
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License as published by
> > + * the Free Software Foundation; either version 2 of the License, or
> > + * (at your option) any later version.
> > + */
> > +
> > +#include <linux/init.h>
> > +#include <linux/ioport.h>
> > +#include <linux/mc146818rtc.h>
> > +#include <linux/platform_device.h>
> > +
> > +static struct resource rtc_cmos_resource[] = {
> > + {
> > + .start = RTC_PORT(0),
> > + .end = RTC_PORT(1),
> > + .flags = IORESOURCE_IO,
> > + },
> > + {
> > + .start = RTC_IRQ,
> > + .end = RTC_IRQ,
> > + .flags = IORESOURCE_IRQ,
> > + },
> > +};
> > +
> > +static struct platform_device rtc_cmos_device = {
> > + .name = "rtc_cmos",
> > + .id = -1,
> > + .num_resources = ARRAY_SIZE(rtc_cmos_resource),
> > + .resource = rtc_cmos_resource
> > +};
> > +
> > +static __init int rtc_cmos_init(void)
> > +{
> > + platform_device_register(&rtc_cmos_device);
> > +
> > + return 0;
>
> what about return platform_device_register(&rtc_cmos_device); ?
>
>
Okay, later.
Regards,
Wu Zhangjin
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [PATCH -queue v0 1/6] [loongson] add basic loongson-2f support, Ralf Baechle |
|---|---|
| Next by Date: | Re: [PATCH 1/2] RTC: enable RTC_LIB for fuloong2e and fuloong2f, Wu Zhangjin |
| Previous by Thread: | Re: [PATCH 2/2] [loongson] fuloong: add RTC_LIB Support, Arnaud Patard |
| Next by Thread: | mips timer could not work, wilbur.chan |
| Indexes: | [Date] [Thread] [Top] [All Lists] |