From: Andy Isaacson <adi@hexapodia.org>
To: linux-mips@linux-mips.org
Subject: [PATCH] fix git tip for sibyte
Date: Wed, 19 Oct 2005 22:23:50 -0700 [thread overview]
Message-ID: <20051020052350.GD12605@hexapodia.org> (raw)
Use x & ~bitmask to turn bits off, rather than x & bitmask.
Signed-Off-By: Andy Isaacson <adi@hexapodia.org>
Index: lmo/arch/mips/kernel/cpu-probe.c
===================================================================
--- lmo.orig/arch/mips/kernel/cpu-probe.c 2005-10-19 22:20:09.000000000 -0700
+++ lmo/arch/mips/kernel/cpu-probe.c 2005-10-19 22:20:48.000000000 -0700
@@ -618,7 +618,7 @@
* cache code which eventually will be folded into c-r4k.c. Until
* then we pretend it's got it's own cache architecture.
*/
- c->options &= MIPS_CPU_4K_CACHE;
+ c->options &= ~MIPS_CPU_4K_CACHE;
c->options |= MIPS_CPU_SB1_CACHE;
switch (c->processor_id & 0xff00) {
reply other threads:[~2005-10-20 5:24 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20051020052350.GD12605@hexapodia.org \
--to=adi@hexapodia.org \
--cc=linux-mips@linux-mips.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox