summaryrefslogtreecommitdiff
path: root/drivers/staging/vt6656/iwctl.c
diff options
context:
space:
mode:
authorAndres More <more.andres@gmail.com>2010-07-12 14:24:48 -0300
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 11:42:28 -0700
commit8efe1ab3a969cdaff4b9aefb9f67efda4e6e979d (patch)
tree39fdf73a8c1e0f7d0ed8c38e7c2d7e512916f30d /drivers/staging/vt6656/iwctl.c
parent24fe608a2d4d78cc1a5f5424a4db5c13e3a00983 (diff)
downloadlinux-3.10-8efe1ab3a969cdaff4b9aefb9f67efda4e6e979d.tar.gz
linux-3.10-8efe1ab3a969cdaff4b9aefb9f67efda4e6e979d.tar.bz2
linux-3.10-8efe1ab3a969cdaff4b9aefb9f67efda4e6e979d.zip
staging: vt6656: removed Calcu_LinkQual definition
Removed an always defined macro, perhaps used to patch the driver Signed-off-by: Andres More <more.andres@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/vt6656/iwctl.c')
-rw-r--r--drivers/staging/vt6656/iwctl.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/vt6656/iwctl.c b/drivers/staging/vt6656/iwctl.c
index b4c405168d2..016b8e7766f 100644
--- a/drivers/staging/vt6656/iwctl.c
+++ b/drivers/staging/vt6656/iwctl.c
@@ -83,13 +83,9 @@ struct iw_statistics *iwctl_get_wireless_stats(struct net_device *dev)
long ldBm;
pDevice->wstats.status = pDevice->eOPMode;
- #ifdef Calcu_LinkQual
if(pDevice->scStatistic.LinkQuality > 100)
pDevice->scStatistic.LinkQuality = 100;
pDevice->wstats.qual.qual =(BYTE) pDevice->scStatistic.LinkQuality;
- #else
- pDevice->wstats.qual.qual = pDevice->byCurrSQ;
- #endif
RFvRSSITodBm(pDevice, (BYTE)(pDevice->uCurrRSSI), &ldBm);
pDevice->wstats.qual.level = ldBm;
//pDevice->wstats.qual.level = 0x100 - pDevice->uCurrRSSI;
@@ -583,11 +579,7 @@ int iwctl_giwrange(struct net_device *dev,
}
range->num_frequency = k;
// Hum... Should put the right values there
- #ifdef Calcu_LinkQual
range->max_qual.qual = 100;
- #else
- range->max_qual.qual = 255;
- #endif
range->max_qual.level = 0;
range->max_qual.noise = 0;
range->sensitivity = 255;