scsi/qla2xxx: Remove erroneous unused macro qla82xx_get_temp_val1()
authorThomas Huth <thuth@redhat.com>
Tue, 24 May 2016 10:27:34 +0000 (12:27 +0200)
committerJiri Kosina <jkosina@suse.cz>
Tue, 21 Jun 2016 11:22:39 +0000 (13:22 +0200)
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>
drivers/scsi/qla2xxx/qla_nx.h

index 59c477883a7325ba1810dd833e9c03661156ff58..6201dce3553bf951b5b1f770842e289ced553e95 100644 (file)
@@ -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))
 
This page took 0.025862 seconds and 5 git commands to generate.