mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-28 16:43:09 +00:00
Fix a masking error. Update copyright.
This commit is contained in:
parent
56bcfb6d4e
commit
92a50b006d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=140584
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user