X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=blobdiff_plain;f=src%2Fdevices%2Fdisk.c;h=9e4b9f506358296c0eb2f9b49760059e12a95282;hp=dc0c1819cb0df583dcb40c7621697addd2d6ffd1;hb=f6580e9ad405b519dbe85027691bf3c66074b0a4;hpb=2324ca7dd99fe1787ff4eac42f73d491eb2b9f36 diff --git a/src/devices/disk.c b/src/devices/disk.c index dc0c181..9e4b9f5 100644 --- a/src/devices/disk.c +++ b/src/devices/disk.c @@ -1,11 +1,11 @@ #include "disk.h" #include -#include "debug.h" -#include "io.h" -#include "interrupt.h" -#include "lib.h" -#include "synch.h" #include "timer.h" +#include "lib/debug.h" +#include "lib/lib.h" +#include "threads/io.h" +#include "threads/interrupt.h" +#include "threads/synch.h" /* ATA command block port addresses. */ #define reg_data(CHANNEL) ((CHANNEL)->reg_base + 0) /* Data. */