| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] IP22/IP28: fix extracting board/chip rev |
| From: | Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
| Date: | Sun, 25 Nov 2007 11:27:06 +0100 |
| Cc: | ralf@linux-mips.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
Taken from Peter Fuersts IP28 patches
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
---
include/asm-mips/sgi/ioc.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/asm-mips/sgi/ioc.h b/include/asm-mips/sgi/ioc.h
index f3e3dc9..343ed15 100644
--- a/include/asm-mips/sgi/ioc.h
+++ b/include/asm-mips/sgi/ioc.h
@@ -138,8 +138,8 @@ struct sgioc_regs {
u8 _sysid[3];
volatile u8 sysid;
#define SGIOC_SYSID_FULLHOUSE 0x01
-#define SGIOC_SYSID_BOARDREV(x) ((x & 0xe0) > 5)
-#define SGIOC_SYSID_CHIPREV(x) ((x & 0x1e) > 1)
+#define SGIOC_SYSID_BOARDREV(x) (((x) & 0x1e) >> 1)
+#define SGIOC_SYSID_CHIPREV(x) (((x) & 0xe0) >> 5)
u32 _unused2;
u8 _read[3];
volatile u8 read;
--
1.4.4.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | SGI IP28 support, Thomas Bogendoerfer |
|---|---|
| Next by Date: | [PATCH] fix warning when using PHYS_TO_XKSEG_xx(), Thomas Bogendoerfer |
| Previous by Thread: | SGI IP28 support, Thomas Bogendoerfer |
| Next by Thread: | Re: [PATCH] IP22/IP28: fix extracting board/chip rev, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |