Guest User

Untitled

a guest
Sep 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. --- wl_cfg80211.c.orig 2011-10-23 01:55:54.000000000 +0900
  2. +++ wl_cfg80211.c 2012-03-26 22:30:05.000000000 +0900
  3. @@ -1454,7 +1454,7 @@
  4.  
  5. err = wl_dev_ioctl(dev, WLC_GET_RATE, &rate, sizeof(rate));
  6. if (err) {
  7. - WL_ERR(("Could not get rate (%d)\n", err));
  8. + // WL_ERR(("Could not get rate (%d)\n", err));
  9. } else {
  10. rate = dtoh32(rate);
  11. sinfo->filled |= STATION_INFO_TX_BITRATE;
  12. @@ -1466,7 +1466,7 @@
  13. scb_val.val = 0;
  14. err = wl_dev_ioctl(dev, WLC_GET_RSSI, &scb_val, sizeof(scb_val_t));
  15. if (err) {
  16. - WL_ERR(("Could not get rssi (%d)\n", err));
  17. + // WL_ERR(("Could not get rssi (%d)\n", err));
  18. return err;
  19. }
  20. rssi = dtoh32(scb_val.val);
  21. @@ -2415,7 +2415,7 @@
  22. set_bit(WL_STATUS_READY, &wl->status);
  23.  
  24. if (!err) {
  25. - WL_INF(("Registered CFG80211 phy\n"));
  26. + // WL_INF(("Registered CFG80211 phy\n"));
  27. }
  28. return err;
Add Comment
Please, Sign In to add comment