coreboot-kgpe-d16/src/superio
Nico Huber 0b2ee93910 pnp: Remove now plain wrappers for default PnP functions
After removing the enter()/exit() functions for configuration mode,
most wrappers for our standard PnP functions just call the underlying
default implementation.

Remove those with a little cocci:
    @ op_match @
    identifier op;
    identifier pnp_op =~ "^pnp_((alt_|)enable|(set|enable)_resources)$";
    type device_t;
    identifier dev;
    @@
     static void op(device_t dev) { pnp_op(dev); }

    @@
    identifier op_match.op;
    @@
    -op(...) {...}

    /* Three rules to match the alignment, hmmp... */
    @@
    identifier op_match.op, op_match.pnp_op;
    identifier ops;
    @@
     struct device_operations ops = {
    -        .set_resources    = op,
    +        .set_resources    = pnp_op,
     };

    @@
    identifier op_match.op, op_match.pnp_op;
    identifier ops;
    @@
     struct device_operations ops = {
    -        .enable_resources = op,
    +        .enable_resources = pnp_op,
     };

    @@
    identifier op_match.op, op_match.pnp_op;
    identifier ops;
    @@
     struct device_operations ops = {
    -        .enable           = op,
    +        .enable           = pnp_op,
     };

Change-Id: Idc0e52c7e3600a01f3b6a4e17763557b271b481e
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: http://review.coreboot.org/3483
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2013-06-17 21:42:21 +02:00
..
acpi Start ACPI framework for PnP (super i/o) devices 2013-06-11 00:13:31 +02:00
fintek pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
intel pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
ite pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
nsc Drop prototype guarding for romcc 2013-05-10 00:06:46 +02:00
nuvoton pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
renesas GPLv2 notice: Unify all files to just use one space in »MA 02110-1301« 2013-03-01 10:16:08 +01:00
serverengines x86: Unify arch/io.h and arch/romcc_io.h 2013-03-22 00:00:09 +01:00
smsc pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
via pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
winbond pnp: Remove now plain wrappers for default PnP functions 2013-06-17 21:42:21 +02:00
Kconfig AMD SB800: don't switch clock from 14 to 48 MHz for smscsuperio 2013-03-06 19:07:28 +01:00
Makefile.inc GPLv2 notice: Unify all files to just use one space in »MA 02110-1301« 2013-03-01 10:16:08 +01:00