gsra99 / iwleeprom

Automatically exported from code.google.com/p/iwleeprom
1 stars 0 forks source link

Need to init_card() before initpower() #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently line 1011...1014 is:
<<<
        if(init_device)
                initpower();

        init_card();
>>>

It needs to be:
<<<
        init_card();

        if(init_device)
                initpower();
>>>
since init_card() sets up the memory map (mappedAddress) which is used by 
initpower().

Original issue reported on code.google.com by supermat...@gmail.com on 1 Sep 2012 at 4:43

GoogleCodeExporter commented 9 years ago
Will be fixed.

Original comment by alexan...@kalinichenko.org on 17 May 2013 at 9:21

GoogleCodeExporter commented 9 years ago

Original comment by alexan...@kalinichenko.org on 17 May 2013 at 9:30

GoogleCodeExporter commented 9 years ago

Original comment by qpxt...@gmail.com on 31 Mar 2014 at 10:37

GoogleCodeExporter commented 9 years ago
fixed in R43

Original comment by qpxt...@gmail.com on 31 Mar 2014 at 11:02