diff options
author | msmith <msmith@FreeBSD.org> | 2001-11-28 04:29:40 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-11-28 04:29:40 +0000 |
commit | 78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5 (patch) | |
tree | 0c31c343a3bcd338031dfa7ffecb38450cabc5ef /sys/contrib/dev/acpica/rsmisc.c | |
parent | d03f718884612e91eef85c79832b389a30988784 (diff) | |
parent | fe76969b7da935c578de24725d0e86947a339135 (diff) | |
download | FreeBSD-src-78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5.zip FreeBSD-src-78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r87031,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica/rsmisc.c')
-rw-r--r-- | sys/contrib/dev/acpica/rsmisc.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/sys/contrib/dev/acpica/rsmisc.c b/sys/contrib/dev/acpica/rsmisc.c index 830991d..ee1732f 100644 --- a/sys/contrib/dev/acpica/rsmisc.c +++ b/sys/contrib/dev/acpica/rsmisc.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: rsmisc - Miscellaneous resource descriptors - * $Revision: 16 $ + * $Revision: 17 $ * ******************************************************************************/ @@ -283,8 +283,7 @@ AcpiRsVendorResource ( if (Temp8 & 0x80) { /* - * Large Item - * Point to the length field + * Large Item, point to the length field */ Buffer += 1; @@ -300,12 +299,10 @@ AcpiRsVendorResource ( Buffer += 2; } - else { /* - * Small Item - * Dereference the size + * Small Item, dereference the size */ Temp16 = (UINT8)(*Buffer & 0x07); @@ -385,8 +382,7 @@ AcpiRsVendorStream ( if(LinkedList->Data.VendorSpecific.Length > 7) { /* - * Large Item - * Set the descriptor field and length bytes + * Large Item, Set the descriptor field and length bytes */ *Buffer = 0x84; Buffer += 1; @@ -396,12 +392,10 @@ AcpiRsVendorStream ( MOVE_UNALIGNED16_TO_16 (Buffer, &Temp16); Buffer += 2; } - else { /* - * Small Item - * Set the descriptor field + * Small Item, Set the descriptor field */ Temp8 = 0x70; Temp8 |= LinkedList->Data.VendorSpecific.Length; @@ -504,7 +498,6 @@ AcpiRsStartDependentFunctionsResource ( return_ACPI_STATUS (AE_AML_ERROR); } } - else { OutputStruct->Data.StartDpf.CompatibilityPriority = |