diff options
| author | Toomas Soome <tsoome@me.com> | 2017-07-15 12:52:53 +0300 |
|---|---|---|
| committer | Hans Rosenfeld <hans.rosenfeld@joyent.com> | 2018-04-23 18:15:39 +0200 |
| commit | e916f0dc33b09935ecd578858cf0aaa9867be4ec (patch) | |
| tree | bd136055c9ef489f7e40d788942eea14400088f6 | |
| parent | 173f9ecb676ad20b467555f6b20bbfae39f90372 (diff) | |
| download | illumos-joyent-e916f0dc33b09935ecd578858cf0aaa9867be4ec.tar.gz | |
9264 amd8111s: error: '<<' in boolean context
Reviewed by: Jason King <jason.brian.king@gmail.com>
Reviewed by: Yuri Pankov <yuripv@yuripv.net>
Reviewed by: Vitaliy Gusev <gusev.vitaliy@icloud.com>
Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
| -rwxr-xr-x | usr/src/uts/intel/io/amd8111s/amd8111s_hw.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/uts/intel/io/amd8111s/amd8111s_hw.c b/usr/src/uts/intel/io/amd8111s/amd8111s_hw.c index a19a550a63..b777a92730 100755 --- a/usr/src/uts/intel/io/amd8111s/amd8111s_hw.c +++ b/usr/src/uts/intel/io/amd8111s/amd8111s_hw.c @@ -3,8 +3,6 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * Copyright (c) 2001-2006 Advanced Micro Devices, Inc. All rights reserved. * @@ -1483,7 +1481,7 @@ mdlChangeFilter(struct LayerPointers *pLayerPointers, unsigned long *ArrayPtr) */ FilterByte = HashCode >> 3; pLayerPointers->pMdl->TempLADRF[FilterByte] &= - !(1 << (HashCode & 0x07)); + ~(1 << (HashCode & 0x07)); break; default: |
