PC87384: remove unused init function
Signed-off-by: Sven Schnelle <svens@stackframe.org> Acked-by: Sven Schnelle <svens@stackframe.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6529 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
81725b2eff
commit
ea3b58532a
|
@ -30,25 +30,11 @@
|
||||||
#include "chip.h"
|
#include "chip.h"
|
||||||
#include "pc87384.h"
|
#include "pc87384.h"
|
||||||
|
|
||||||
static void init(device_t dev)
|
|
||||||
{
|
|
||||||
struct superio_nsc_pc87384_config *conf = dev->chip_info;
|
|
||||||
|
|
||||||
if (!dev->enabled)
|
|
||||||
return;
|
|
||||||
|
|
||||||
switch(dev->path.pnp.device) {
|
|
||||||
case PC87384_GPIO:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct device_operations ops = {
|
static struct device_operations ops = {
|
||||||
.read_resources = pnp_read_resources,
|
.read_resources = pnp_read_resources,
|
||||||
.set_resources = pnp_set_resources,
|
.set_resources = pnp_set_resources,
|
||||||
.enable_resources = pnp_enable_resources,
|
.enable_resources = pnp_enable_resources,
|
||||||
.enable = pnp_enable,
|
.enable = pnp_enable,
|
||||||
.init = init,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct pnp_info pnp_dev_info[] = {
|
static struct pnp_info pnp_dev_info[] = {
|
||||||
|
|
Loading…
Reference in New Issue