From 92a50b006dbcea915a64e87304c6d0bbc3ee3245 Mon Sep 17 00:00:00 2001 From: Bruce M Simpson Date: Fri, 21 Jan 2005 17:05:33 +0000 Subject: Fix a masking error. Update copyright. --- tools/tools/pirtool/pirtable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/tools/pirtool/pirtable.h b/tools/tools/pirtool/pirtable.h index d71eeeee8051..cce6902c3ceb 100644 --- a/tools/tools/pirtool/pirtable.h +++ b/tools/tools/pirtool/pirtable.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2002-2004 Bruce M. Simpson. + * Copyright (c) 2002-2005 Bruce M. Simpson. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -44,7 +44,7 @@ #define PIR_SIZE 0x10000 #define PIR_OFFSET 16 -#define PIR_DEV(x) (((x) & 0xF8) >> 5) +#define PIR_DEV(x) (((x) & 0xF8) >> 3) #define PIR_FUNC(x) ((x) & 0x7) typedef struct { -- cgit v1.2.3