diff options
Diffstat (limited to 'arch/sparc/kernel/apc.c')
| -rw-r--r-- | arch/sparc/kernel/apc.c | 17 | 
1 files changed, 9 insertions, 8 deletions
diff --git a/arch/sparc/kernel/apc.c b/arch/sparc/kernel/apc.c index 52de4a9424e..eefda32b595 100644 --- a/arch/sparc/kernel/apc.c +++ b/arch/sparc/kernel/apc.c @@ -13,12 +13,14 @@  #include <linux/pm.h>  #include <linux/of.h>  #include <linux/of_device.h> +#include <linux/module.h>  #include <asm/io.h>  #include <asm/oplib.h>  #include <asm/uaccess.h>  #include <asm/auxio.h>  #include <asm/apc.h> +#include <asm/processor.h>  /* Debugging   *  @@ -30,7 +32,7 @@  #define APC_DEVNAME "apc"  static u8 __iomem *regs; -static int apc_no_idle __devinitdata = 0; +static int apc_no_idle = 0;  #define apc_readb(offs)		(sbus_readb(regs+offs))  #define apc_writeb(val, offs) 	(sbus_writeb(val, regs+offs)) @@ -123,7 +125,7 @@ static long apc_ioctl(struct file *f, unsigned int cmd, unsigned long __arg)  	default:  		return -EINVAL; -	}; +	}  	return 0;  } @@ -137,8 +139,7 @@ static const struct file_operations apc_fops = {  static struct miscdevice apc_miscdev = { APC_MINOR, APC_DEVNAME, &apc_fops }; -static int __devinit apc_probe(struct platform_device *op, -			       const struct of_device_id *match) +static int apc_probe(struct platform_device *op)  {  	int err; @@ -158,7 +159,7 @@ static int __devinit apc_probe(struct platform_device *op,  	/* Assign power management IDLE handler */  	if (!apc_no_idle) -		pm_idle = apc_swift_idle;	 +		sparc_idle = apc_swift_idle;  	printk(KERN_INFO "%s: power management initialized%s\n",   	       APC_DEVNAME, apc_no_idle ? " (CPU idle disabled)" : ""); @@ -166,7 +167,7 @@ static int __devinit apc_probe(struct platform_device *op,  	return 0;  } -static struct of_device_id __initdata apc_match[] = { +static struct of_device_id apc_match[] = {  	{  		.name = APC_OBPNAME,  	}, @@ -174,7 +175,7 @@ static struct of_device_id __initdata apc_match[] = {  };  MODULE_DEVICE_TABLE(of, apc_match); -static struct of_platform_driver apc_driver = { +static struct platform_driver apc_driver = {  	.driver = {  		.name = "apc",  		.owner = THIS_MODULE, @@ -185,7 +186,7 @@ static struct of_platform_driver apc_driver = {  static int __init apc_init(void)  { -	return of_register_platform_driver(&apc_driver); +	return platform_driver_register(&apc_driver);  }  /* This driver is not critical to the boot process  | 
