pnp: Unify some alignment to ease autogenerating patches

Most PnP drivers align the initialization of their `device_operations`
with spaces. Unify this, so next autogenerated patches always match the
alignment.

Change-Id: I3f6baef6c8bb294c136354754125ea88c07a61a1
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: http://review.coreboot.org/3479
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Nico Huber
2013-06-15 15:30:19 +02:00
committed by Ronald G. Minnich
parent 7fd1beeaf7
commit 9cb0941cb2
5 changed files with 25 additions and 25 deletions

View File

@@ -231,11 +231,11 @@ static void smsc_init(device_t dev)
/** Standard device operations. */
static struct device_operations ops = {
.read_resources = pnp_read_resources,
.set_resources = smsc_pnp_set_resources,
.enable_resources = smsc_pnp_enable_resources,
.enable = smsc_pnp_enable,
.init = smsc_init,
.read_resources = pnp_read_resources,
.set_resources = smsc_pnp_set_resources,
.enable_resources = smsc_pnp_enable_resources,
.enable = smsc_pnp_enable,
.init = smsc_init,
};
/**