aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500pci.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/rt2500pci.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/rt2500pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2500pci.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c
index bb359a14b4ae..529b1841a085 100644
--- a/drivers/net/wireless/rt2x00/rt2500pci.c
+++ b/drivers/net/wireless/rt2x00/rt2500pci.c
@@ -951,19 +951,15 @@ continue_csr_init:
951 rt2500pci_bbp_write(rt2x00dev, 61, 0x6d); 951 rt2500pci_bbp_write(rt2x00dev, 61, 0x6d);
952 rt2500pci_bbp_write(rt2x00dev, 62, 0x10); 952 rt2500pci_bbp_write(rt2x00dev, 62, 0x10);
953 953
954 DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
955 for (i = 0; i < EEPROM_BBP_SIZE; i++) { 954 for (i = 0; i < EEPROM_BBP_SIZE; i++) {
956 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom); 955 rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
957 956
958 if (eeprom != 0xffff && eeprom != 0x0000) { 957 if (eeprom != 0xffff && eeprom != 0x0000) {
959 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID); 958 reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
960 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE); 959 value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
961 DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
962 reg_id, value);
963 rt2500pci_bbp_write(rt2x00dev, reg_id, value); 960 rt2500pci_bbp_write(rt2x00dev, reg_id, value);
964 } 961 }
965 } 962 }
966 DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
967 963
968 return 0; 964 return 0;
969} 965}