From 9cb0941cb2f4ceb77b470c4de617ca915896d9f3 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Sat, 15 Jun 2013 15:30:19 +0200 Subject: 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 Reviewed-on: http://review.coreboot.org/3479 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel Reviewed-by: Ronald G. Minnich --- src/superio/ite/it8772f/superio.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/superio/ite/it8772f') diff --git a/src/superio/ite/it8772f/superio.c b/src/superio/ite/it8772f/superio.c index b4b54e9dc3..b6c4405d9b 100644 --- a/src/superio/ite/it8772f/superio.c +++ b/src/superio/ite/it8772f/superio.c @@ -211,11 +211,11 @@ static void it8772f_pnp_enable(device_t dev) } static struct device_operations ops = { - .read_resources = pnp_read_resources, - .set_resources = it8772f_pnp_set_resources, - .enable_resources = it8772f_pnp_enable_resources, - .enable = it8772f_pnp_enable, - .init = it8772f_init, + .read_resources = pnp_read_resources, + .set_resources = it8772f_pnp_set_resources, + .enable_resources = it8772f_pnp_enable_resources, + .enable = it8772f_pnp_enable, + .init = it8772f_init, }; static struct pnp_info pnp_dev_info[] = { -- cgit v1.2.3