Changeset 2096
- Timestamp:
- 02/08/07 02:49:11 (2 years ago)
- Files:
-
- trunk/net80211/ieee80211_rate.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/net80211/ieee80211_rate.c
r1977 r2096 82 82 { 83 83 int id; 84 int err;85 84 char buf[64]; 86 85 struct ath_ratectrl *ctl; … … 97 96 } 98 97 99 err = ieee80211_load_module(buf); 100 if (err || !ratectls[id].attach) { 101 printk(KERN_ERR "Error %d loading module \"%s\"\n", 102 err, buf); 98 if (!ratectls[id].attach) 99 ieee80211_load_module(buf); 100 101 if (!ratectls[id].attach) { 102 printk(KERN_ERR "Error loading module \"%s\"\n", buf); 103 103 return NULL; 104 104 }
