|
@@ -15,6 +15,7 @@
|
|
|
#include <linux/sched.h>
|
|
|
#include <linux/dma-mapping.h>
|
|
|
#include <linux/scatterlist.h>
|
|
|
+#include <linux/syscalls.h>
|
|
|
|
|
|
#include "proto.h"
|
|
|
|
|
@@ -46,8 +47,8 @@ alloc_resource(void)
|
|
|
return alloc_bootmem(sizeof(struct resource));
|
|
|
}
|
|
|
|
|
|
-asmlinkage long
|
|
|
-sys_pciconfig_iobase(long which, unsigned long bus, unsigned long dfn)
|
|
|
+SYSCALL_DEFINE3(pciconfig_iobase, long, which, unsigned long, bus,
|
|
|
+ unsigned long, dfn)
|
|
|
{
|
|
|
struct pci_controller *hose;
|
|
|
|
|
@@ -84,9 +85,8 @@ sys_pciconfig_iobase(long which, unsigned long bus, unsigned long dfn)
|
|
|
return -EOPNOTSUPP;
|
|
|
}
|
|
|
|
|
|
-asmlinkage long
|
|
|
-sys_pciconfig_read(unsigned long bus, unsigned long dfn,
|
|
|
- unsigned long off, unsigned long len, void *buf)
|
|
|
+SYSCALL_DEFINE5(pciconfig_read, unsigned long, bus, unsigned long, dfn,
|
|
|
+ unsigned long, off, unsigned long, len, void __user *, buf)
|
|
|
{
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
return -EPERM;
|
|
@@ -94,9 +94,8 @@ sys_pciconfig_read(unsigned long bus, unsigned long dfn,
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
|
|
|
-asmlinkage long
|
|
|
-sys_pciconfig_write(unsigned long bus, unsigned long dfn,
|
|
|
- unsigned long off, unsigned long len, void *buf)
|
|
|
+SYSCALL_DEFINE5(pciconfig_write, unsigned long, bus, unsigned long, dfn,
|
|
|
+ unsigned long, off, unsigned long, len, void __user *, buf)
|
|
|
{
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
return -EPERM;
|