diff options
author | Thomas Huth <thuth@redhat.com> | 2016-05-24 13:27:34 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2016-06-21 14:22:39 +0300 |
commit | ae0f1e642ea2b59a3efc1e210d07383ba1beb74e (patch) | |
tree | 26364d2e155ce4d8c08654028f5b71dbff2379c2 /drivers/scsi/qla2xxx/qla_nx.h | |
parent | 16bf8348055fe4615bd08ef50f9874f5dcc10268 (diff) | |
download | linux-ae0f1e642ea2b59a3efc1e210d07383ba1beb74e.tar.xz |
scsi/qla2xxx: Remove erroneous unused macro qla82xx_get_temp_val1()
That macros uses logical "&&" instead of bit-wise "&" which is
apparently wrong. Since the macro is completely unused, simply
remove it, so that nobody can accidentially use it anymore.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_nx.h')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_nx.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_nx.h b/drivers/scsi/qla2xxx/qla_nx.h index 59c477883a73..6201dce3553b 100644 --- a/drivers/scsi/qla2xxx/qla_nx.h +++ b/drivers/scsi/qla2xxx/qla_nx.h @@ -1183,7 +1183,6 @@ static const int MD_MIU_TEST_AGT_RDDATA[] = { 0x410000A8, 0x410000AC, #define CRB_NIU_XG_PAUSE_CTL_P1 0x8 #define qla82xx_get_temp_val(x) ((x) >> 16) -#define qla82xx_get_temp_val1(x) ((x) && 0x0000FFFF) #define qla82xx_get_temp_state(x) ((x) & 0xffff) #define qla82xx_encode_temp(val, state) (((val) << 16) | (state)) |