aboutsummaryrefslogtreecommitdiff
path: root/src/hw
AgeCommit message (Collapse)AuthorFilesLines
2013-09-18Move function definitions for output.c from util.h to new file output.h.Kevin O'Connor25-138/+156
Also, sort the order of include files in the c files. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Move malloc code from pmm.c to new files malloc.c and malloc.h.Kevin O'Connor17-0/+17
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Move romfile definitions from util.h to new file romfile.h.Kevin O'Connor4-0/+4
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Move stacks.c definitions from util.h to new file stacks.h.Kevin O'Connor9-1/+9
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Rename util.c to string.c and introduce string.h.Kevin O'Connor19-0/+19
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-18Split x86 specific functions out of util.c/h to new files x86.c/h.Kevin O'Connor5-0/+5
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-16ahci: add missing check for allocation failureGerd Hoffmann1-9/+16
Triggerable by creating a virtual machine with *lots* of ahci controllers and disks. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
2013-09-02Move code cenetered around firmware initialization to src/fw/Kevin O'Connor2-2/+2
Move many C files from the src/ directory to the new src/fw/ directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
2013-09-02Move code centered around specific hardware devices to src/hw/Kevin O'Connor49-0/+13897
Move many C files from the src/ directory to the new src/hw/ directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>