aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt61pci.c
diff options
context:
space:
mode:
authorIvo van Doorn <ivdoorn@gmail.com>2008-02-10 16:47:17 -0500
committerJohn W. Linville <linville@tuxdriver.com>2008-02-29 15:37:18 -0500
commit25fd893db26e90a1e9cf8ba151395766c70a69b3 (patch)
tree1e78b95960cd8fb3a6981461f90737558730e6c3 /drivers/net/wireless/rt2x00/rt61pci.c
parent9c9dd2c9a42e8eb38b67f6c743c3d214664b8e2b (diff)
rt2x00: Make rt2x00 less verbose
Remove the debug messages regarding initialization from EEPROM. The values are vendor specific, and are not really needed for debug purposes. If they ever become usefull we still have access to them through debugfs which also prints the exact same values... Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt61pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt61pci.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index a049ff62e791..25b3c6e2a556 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -1282,19 +1282,15 @@ continue_csr_init:
1282 rt61pci_bbp_write(rt2x00dev, 102, 0x16); 1282 rt61pci_bbp_write(rt2x00dev, 102, 0x16);
1283 rt61pci_bbp_write(rt2x00dev, 107, 0x04); 1283 rt61pci_bbp_write(rt2x00dev, 107, 0x04);
1284 1284
1285 DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
1286 for (i = 0; i < EEPROM_BBP_SIZE; i++) { 1285 for (i = 0; i < EEPROM_BBP_SIZE; i++) {
1287 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom); 1286 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
1288 1287
1289 if (eeprom != 0xffff && eeprom != 0x0000) { 1288 if (eeprom != 0xffff && eeprom != 0x0000) {
1290 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID); 1289 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
1291 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE); 1290 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
1292 DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
1293 reg_id, value);
1294 rt61pci_bbp_write(rt2x00dev, reg_id, value); 1291 rt61pci_bbp_write(rt2x00dev, reg_id, value);
1295 } 1292 }
1296 } 1293 }
1297 DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
1298 1294
1299 return 0; 1295 return 0;
1300} 1296}