diff options
| author | Mike Smith <msmith@FreeBSD.org> | 2001-03-05 02:16:51 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 2001-03-05 02:16:51 +0000 |
| commit | 497b08a07e41b08da459e03b2bae26600d6ea62c (patch) | |
| tree | 370321c5e2b4efe4e5ac201cc6077450ac3ed8b3 /sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c | |
| parent | 27540537e82433a5f3d9442a04929a47d685555b (diff) | |
Notes
Diffstat (limited to 'sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c')
| -rw-r--r-- | sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c b/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c index b8583d87ce9a..24c9a2a23e97 100644 --- a/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c +++ b/sys/contrib/dev/acpica/Subsystem/Interpreter/amfldio.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: amfldio - Aml Field I/O - * $Revision: 37 $ + * $Revision: 39 $ * *****************************************************************************/ @@ -573,7 +573,7 @@ AcpiAmlWriteFieldDataWithUpdateRule ( /* Check if update rule needs to be applied (not if mask is all ones) */ /* The left shift drops the bits we want to ignore. */ - if ((~Mask << (sizeof(Mask) * 8 - BitGranularity)) != 0) + if ((~Mask << (sizeof(Mask)*8 - BitGranularity)) != 0) { /* * Read the current contents of the byte/word/dword containing |
