Commit de69d34e authored by Richard Henderson's avatar Richard Henderson

[PATCH] sr_ioctl fix

sr_ioctl.c uses virt_to_phys, which is defined in asm/io.h.
On x86, this accidentally works, due to other indirect includes,
but on Alpha results in a link error.
parent b9daa006
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#include <linux/blk.h> #include <linux/blk.h>
#include <linux/blkpg.h> #include <linux/blkpg.h>
#include <linux/cdrom.h> #include <linux/cdrom.h>
#include <asm/io.h>
#include "scsi.h" #include "scsi.h"
#include "hosts.h" #include "hosts.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment