Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Convert primary plugdata properly | 933f77d11ca6645df705c4b71c471aa670fccaf3 | David Kilroy | 2008-10-26 14:39:28 |
Convert AirPort firmware version | 1f31f74c58179b099005ae939eff9bb467317b5b | David Kilroy | 2008-10-26 14:37:57 |
Mach-O parsing from Dan Williams | 525f9168679392920da51d2487cc5fdba3c68e2c | David Kilroy | 2008-10-26 14:34:59 |
Check if we are in wl_lkm tree and build appropriately | 4af298b374a1dea172b57acbd080773912d22087 | David Kilroy | 2008-10-26 14:30:33 |
Use C99 types | 11362c209f9ec7369931b9a25a407c21476c48e4 | David Kilroy | 2008-10-26 14:30:03 |
hfwget refactorring posted as hfwget2 April 2008 | 9b77acdf3330592acda5261d282c579cc1497637 | David Kilroy | 2008-10-26 14:27:32 |
dump_fw and hfwget posted Sep 2007 | 77d205076542510222c6e8359bb2647b0d4e0873 | David Kilroy | 2008-10-26 14:22:02 |
Add hfwget.c from hermesap-0.2 | 9239c21487b524cf0f87b4ffa4828793713fbecd | David Kilroy | 2008-10-26 14:20:38 |
dump_fw posted June 2007 | 617a0ae960430d0d93a533ac5dffc7b9c07a777a | David Kilroy | 2008-10-26 14:19:45 |
File | Lines added | Lines deleted |
---|---|---|
hfwget.c | 3 | 3 |
File hfwget.c changed (mode: 100644) (index 792ef0e..54d1546) | |||
... | ... | static void copy_fw_data(struct fwtable* firmware, | |
660 | 660 | /* Convert pri_array (in place in image) */ | /* Convert pri_array (in place in image) */ |
661 | 661 | for (i = 0; firmware->pri_plugarray[i].code != 0; i++) | for (i = 0; firmware->pri_plugarray[i].code != 0; i++) |
662 | 662 | { | { |
663 | firmware->pri_plugarray[i].code = driver_to_host_32(firmware->plugarray[i].code); | ||
664 | firmware->pri_plugarray[i].targ_off = driver_to_host_32(firmware->plugarray[i].targ_off); | ||
665 | firmware->pri_plugarray[i].length = driver_to_host_32(firmware->plugarray[i].length); | ||
663 | firmware->pri_plugarray[i].code = driver_to_host_32(firmware->pri_plugarray[i].code); | ||
664 | firmware->pri_plugarray[i].targ_off = driver_to_host_32(firmware->pri_plugarray[i].targ_off); | ||
665 | firmware->pri_plugarray[i].length = driver_to_host_32(firmware->pri_plugarray[i].length); | ||
666 | 666 | } | } |
667 | 667 | ||
668 | 668 | /* Convert identifiers */ | /* Convert identifiers */ |