aboutsummaryrefslogtreecommitdiffstats
path: root/AUTHORS.rst
Commit message (Expand)AuthorAgeFilesLines
* Add Glyph to AUTHORS.rst.Glyph2015-06-261-0/+1
* Added a repr() method to x509._CertificateMajor Hayden2015-06-211-0/+1
* Remove Mohammed Attia's GPG keyMohammed Attia2015-06-081-1/+1
* Add 'Jiangge Zhang' to AUTHORS. #1990Jiangge Zhang2015-06-051-0/+1
* Adding myself to the authors file.Andre Caron2015-05-161-0/+1
* Add @sbuss to AUTHORSSteven Buss2015-04-151-0/+1
* Adding myself to authorsChellygel2015-03-251-0/+1
* Add greghaynes to AuthorsGregory Haynes2015-01-011-0/+1
* Added load_ssh_rsa_public_key to hazmat.primitives.serialization to allow for...Mark Adams2014-12-131-0/+1
* Add gpg key fingerprint for skeuomorfMohammed Attia2014-10-151-1/+1
* Added to AUTHORS.rstMichael2014-09-121-0/+1
* add my key fingerprint since I've signed a few releases with itPaul Kehrer2014-03-281-1/+1
* Add GPG key fingerprint for lvhLaurens Van Houtven2014-03-071-1/+1
* Added myself to AUTHORSMohammed Attia2014-03-051-0/+1
* Add myself to AUTHORS.rstMatt Iversen2014-02-251-0/+1
* Fixed HOTP test path, added changelog and myself to author list.Ayrx2014-02-211-0/+1
* Add Hynek's GPG fingerprintHynek Schlawack2014-02-201-1/+1
* Add bindings for X509_REQ_get_extensions.Stephen Holsapple2014-01-291-0/+1
* add Konstantinos Koukopoulos to AUTHORS.rstKonstantinos Koukopoulos2014-01-291-0/+1
* I guess I should take some of the blame.David Reid2014-01-081-0/+1
* Add myself to AUTHORSAlex Stapleton2013-12-271-0/+1
* Include all the requirements in the dev-requirements, even those which will b...Alex Gaynor2013-11-081-1/+0
* Typo fixAlex Gaynor2013-10-021-1/+1
* Single lineAlex Gaynor2013-10-021-2/+1
* Include key finger prints in AUTHORS.rstAlex Gaynor2013-10-021-0/+3
* API refactor to separate cffi declarationsPaul Kehrer2013-09-131-0/+1
* update authorsPaul Kehrer2013-09-091-0/+1
* use py.test for testingChristian Heimes2013-08-111-0/+2
* Fix e-mailLaurens Van Houtven2013-08-081-1/+1
* Fix typo in docs and use my private e-mailHynek Schlawack2013-08-081-1/+1
* Included emailsAlex Gaynor2013-08-071-4/+4
* Added an AUTHORS fileAlex Gaynor2013-08-071-0/+7
lk_is_20mhz; + + return 0; +} + int rt2800_probe_hw(struct rt2x00_dev *rt2x00dev) { struct rt2800_drv_data *drv_data = rt2x00dev->drv_data; @@ -8510,6 +8547,15 @@ int rt2800_probe_hw(struct rt2x00_dev *r rt2800_register_write(rt2x00dev, GPIO_CTRL, reg); /* + * Probe SoC clock. + */ + if (rt2x00_is_soc(rt2x00dev)) { + retval = rt2800_probe_clk(rt2x00dev); + if (retval) + return retval; + } + + /* * Initialize hw specifications. */ retval = rt2800_probe_hw_mode(rt2x00dev); --- a/drivers/net/wireless/rt2x00/rt2x00.h +++ b/drivers/net/wireless/rt2x00/rt2x00.h @@ -398,6 +398,7 @@ static inline struct rt2x00_intf* vif_to * @channels: Device/chipset specific channel values (See &struct rf_channel). * @channels_info: Additional information for channels (See &struct channel_info). * @ht: Driver HT Capabilities (See &ieee80211_sta_ht_cap). + * @clk_is_20mhz: External crystal of WiSoC is 20MHz instead of 40MHz */ struct hw_mode_spec { unsigned int supported_bands; @@ -414,6 +415,7 @@ struct hw_mode_spec { const struct channel_info *channels_info; struct ieee80211_sta_ht_cap ht; + int clk_is_20mhz; }; /* --- a/include/linux/rt2x00_platform.h +++ b/include/linux/rt2x00_platform.h @@ -18,6 +18,7 @@ struct rt2x00_platform_data { int disable_2ghz; int disable_5ghz; + int clk_is_20mhz; }; #endif /* _RT2X00_PLATFORM_H */