LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: takada <takada@mbf.nifty.com>
To: lsorense@csclub.uwaterloo.ca
Cc: linux-kernel@vger.kernel.org
Subject: Re: fix typo in geode_configre()@cyrix.c
Date: Wed, 17 Jan 2007 02:12:42 +0900 (JST) [thread overview]
Message-ID: <20070117.021242.227424452.takada@mbf.nifty.com> (raw)
In-Reply-To: <20070116165007.GZ17267@csclub.uwaterloo.ca>
From: lsorense@csclub.uwaterloo.ca (Lennart Sorensen)
Subject: Re: fix typo in geode_configre()@cyrix.c
Date: Tue, 16 Jan 2007 11:50:07 -0500
> On Wed, Jan 17, 2007 at 01:38:35AM +0900, takada wrote:
> > You are right. I agree to your comment. These variables are needless.
> > I made a patch again.
>
> Of course there are also lots of "magic numbers" around, but I must
> admit I don't personally really feel like going through the data sheet
> and naming all of them.
Me too.
>
> > diff -Narup linux-2.6.19.orig/arch/i386/kernel/cpu/cyrix.c linux-2.6.19/arch/i386/kernel/cpu/cyrix.c
> > --- linux-2.6.19.orig/arch/i386/kernel/cpu/cyrix.c 2006-11-30 06:57:37.000000000 +0900
> > +++ linux-2.6.19/arch/i386/kernel/cpu/cyrix.c 2007-01-16 19:55:05.000000000 +0900
> > @@ -161,19 +161,15 @@ static void __cpuinit set_cx86_inc(void)
> > static void __cpuinit geode_configure(void)
> > {
> > unsigned long flags;
> > - u8 ccr3, ccr4;
> > local_irq_save(flags);
> >
> > /* Suspend on halt power saving and enable #SUSP pin */
> > setCx86(CX86_CCR2, getCx86(CX86_CCR2) | 0x88);
> >
> > - ccr3 = getCx86(CX86_CCR3);
> > - setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* Enable */
> > + setCx86(CX86_CCR3, (getCx86(CX86_CCR3) & 0x0f) | 0x10); /* Enable */
> >
> > - ccr4 = getCx86(CX86_CCR4);
> > - ccr4 |= 0x38; /* FPU fast, DTE cache, Mem bypass */
> > -
> > - setCx86(CX86_CCR3, ccr3);
> > + /* FPU fast, DTE cache, Mem bypass */
> > + setCx86(CX86_CCR4, getCx86(CX86_CCR4) | 0x30);
>
> Why did that change from 0x38 to 0x30?
ah... I made mistake. My eye is tired.
Correctry, 0x38.
>
> > set_cx86_memwb();
> > set_cx86_reorder();
> > @@ -415,15 +411,14 @@ static void __cpuinit cyrix_identify(str
> >
> > if (dir0 == 5 || dir0 == 3)
> > {
> > - unsigned char ccr3, ccr4;
> > + unsigned char ccr3;
> > unsigned long flags;
> > printk(KERN_INFO "Enabling CPUID on Cyrix processor.\n");
> > local_irq_save(flags);
> > ccr3 = getCx86(CX86_CCR3);
> > - setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
> > - ccr4 = getCx86(CX86_CCR4);
> > - setCx86(CX86_CCR4, ccr4 | 0x80); /* enable cpuid */
> > - setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
> > + setCx86(CX86_CCR3, (ccr3 & 0x0f) | 0x10); /* enable MAPEN */
> > + setCx86(CX86_CCR4, getCx86(CX86_CCR4) | 0x80); /* enable cpuid */
> > + setCx86(CX86_CCR3, ccr3); /* disable MAPEN */
> > local_irq_restore(flags);
> > }
> > }
>
> --
> Len Sorensen
>
next prev parent reply other threads:[~2007-01-16 17:12 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-09 9:41 takada
2007-01-09 15:43 ` Lennart Sorensen
2007-01-17 0:15 ` Juergen Beisert
2007-01-09 17:33 ` Lennart Sorensen
2007-01-16 16:38 ` takada
2007-01-16 16:50 ` Lennart Sorensen
2007-01-16 17:12 ` takada [this message]
2007-01-24 4:04 ` Andrew Morton
2007-01-16 22:47 ` Lennart Sorensen
2007-01-17 0:24 ` Juergen Beisert
2007-01-17 15:26 ` takada
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070117.021242.227424452.takada@mbf.nifty.com \
--to=takada@mbf.nifty.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lsorense@csclub.uwaterloo.ca \
--subject='Re: fix typo in geode_configre()@cyrix.c' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).