[PATCH] f71805f: Resource needs not be global
The F71805F I/O resource structure needs not be a global variable, as the platform core allocs its own copy of it anyway. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
59ac83677f
commit
568825c8ed
|
@ -99,10 +99,6 @@ superio_exit(int base)
|
||||||
#define ADDR_REG_OFFSET 0
|
#define ADDR_REG_OFFSET 0
|
||||||
#define DATA_REG_OFFSET 1
|
#define DATA_REG_OFFSET 1
|
||||||
|
|
||||||
static struct resource f71805f_resource __initdata = {
|
|
||||||
.flags = IORESOURCE_IO,
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Registers
|
* Registers
|
||||||
*/
|
*/
|
||||||
|
@ -782,6 +778,11 @@ static struct platform_driver f71805f_driver = {
|
||||||
|
|
||||||
static int __init f71805f_device_add(unsigned short address)
|
static int __init f71805f_device_add(unsigned short address)
|
||||||
{
|
{
|
||||||
|
struct resource res = {
|
||||||
|
.start = address,
|
||||||
|
.end = address + REGION_LENGTH - 1,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
};
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
pdev = platform_device_alloc(DRVNAME, address);
|
pdev = platform_device_alloc(DRVNAME, address);
|
||||||
|
@ -791,10 +792,8 @@ static int __init f71805f_device_add(unsigned short address)
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
f71805f_resource.start = address;
|
res.name = pdev->name;
|
||||||
f71805f_resource.end = address + REGION_LENGTH - 1;
|
err = platform_device_add_resources(pdev, &res, 1);
|
||||||
f71805f_resource.name = pdev->name;
|
|
||||||
err = platform_device_add_resources(pdev, &f71805f_resource, 1);
|
|
||||||
if (err) {
|
if (err) {
|
||||||
printk(KERN_ERR DRVNAME ": Device resource addition failed "
|
printk(KERN_ERR DRVNAME ": Device resource addition failed "
|
||||||
"(%d)\n", err);
|
"(%d)\n", err);
|
||||||
|
|
Loading…
Reference in New Issue