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>
This commit is contained in:
parent
9c9dd2c9a4
commit
25fd893db2
5 changed files with 0 additions and 20 deletions
|
@ -797,19 +797,15 @@ static int rt2400pci_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
rt2400pci_bbp_write(rt2x00dev, 30, 0x21);
|
||||
rt2400pci_bbp_write(rt2x00dev, 31, 0x00);
|
||||
|
||||
DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
|
||||
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
|
||||
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
|
||||
|
||||
if (eeprom != 0xffff && eeprom != 0x0000) {
|
||||
reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
|
||||
value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
|
||||
DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
|
||||
reg_id, value);
|
||||
rt2400pci_bbp_write(rt2x00dev, reg_id, value);
|
||||
}
|
||||
}
|
||||
DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -951,19 +951,15 @@ static int rt2500pci_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
rt2500pci_bbp_write(rt2x00dev, 61, 0x6d);
|
||||
rt2500pci_bbp_write(rt2x00dev, 62, 0x10);
|
||||
|
||||
DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
|
||||
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
|
||||
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
|
||||
|
||||
if (eeprom != 0xffff && eeprom != 0x0000) {
|
||||
reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
|
||||
value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
|
||||
DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
|
||||
reg_id, value);
|
||||
rt2500pci_bbp_write(rt2x00dev, reg_id, value);
|
||||
}
|
||||
}
|
||||
DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -881,19 +881,15 @@ static int rt2500usb_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
rt2500usb_bbp_write(rt2x00dev, 62, 0x10);
|
||||
rt2500usb_bbp_write(rt2x00dev, 75, 0xff);
|
||||
|
||||
DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
|
||||
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
|
||||
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
|
||||
|
||||
if (eeprom != 0xffff && eeprom != 0x0000) {
|
||||
reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
|
||||
value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
|
||||
DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
|
||||
reg_id, value);
|
||||
rt2500usb_bbp_write(rt2x00dev, reg_id, value);
|
||||
}
|
||||
}
|
||||
DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1282,19 +1282,15 @@ static int rt61pci_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
rt61pci_bbp_write(rt2x00dev, 102, 0x16);
|
||||
rt61pci_bbp_write(rt2x00dev, 107, 0x04);
|
||||
|
||||
DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
|
||||
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
|
||||
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
|
||||
|
||||
if (eeprom != 0xffff && eeprom != 0x0000) {
|
||||
reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
|
||||
value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
|
||||
DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
|
||||
reg_id, value);
|
||||
rt61pci_bbp_write(rt2x00dev, reg_id, value);
|
||||
}
|
||||
}
|
||||
DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1087,19 +1087,15 @@ static int rt73usb_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
rt73usb_bbp_write(rt2x00dev, 102, 0x16);
|
||||
rt73usb_bbp_write(rt2x00dev, 107, 0x04);
|
||||
|
||||
DEBUG(rt2x00dev, "Start initialization from EEPROM...\n");
|
||||
for (i = 0; i < EEPROM_BBP_SIZE; i++) {
|
||||
rt2x00_eeprom_read(rt2x00dev, EEPROM_BBP_START + i, &eeprom);
|
||||
|
||||
if (eeprom != 0xffff && eeprom != 0x0000) {
|
||||
reg_id = rt2x00_get_field16(eeprom, EEPROM_BBP_REG_ID);
|
||||
value = rt2x00_get_field16(eeprom, EEPROM_BBP_VALUE);
|
||||
DEBUG(rt2x00dev, "BBP: 0x%02x, value: 0x%02x.\n",
|
||||
reg_id, value);
|
||||
rt73usb_bbp_write(rt2x00dev, reg_id, value);
|
||||
}
|
||||
}
|
||||
DEBUG(rt2x00dev, "...End initialization from EEPROM.\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue