aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/ibexpeak
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-10-03 21:54:16 +0200
committerMartin Roth <martinroth@google.com>2016-10-07 18:08:03 +0200
commit035df005c5b9b473c2d61601c098792a34527a52 (patch)
tree0c2afbd8f6dc4d773ee4a720a4348ba254a78104 /src/southbridge/intel/ibexpeak
parentc44fb50185571b6bdf4febcc4cc1476a79c67ae2 (diff)
src/southbridge: Remove whitespace after sizeof
Change-Id: Ic3b599d49a4c03ad8035c558b975f31cb91d253b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16862 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/southbridge/intel/ibexpeak')
-rw-r--r--src/southbridge/intel/ibexpeak/lpc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/southbridge/intel/ibexpeak/lpc.c b/src/southbridge/intel/ibexpeak/lpc.c
index 23b192575f..0a08a15399 100644
--- a/src/southbridge/intel/ibexpeak/lpc.c
+++ b/src/southbridge/intel/ibexpeak/lpc.c
@@ -310,7 +310,7 @@ static void mobile5_pm_init(struct device *dev)
/* 2010: */ 0x00188200, 0x14000016, 0xbc4abcb5, 0x00000000,
/* 2020: */ 0xf0c9605b, 0x13683040, 0x04c8f16e, 0x09e90170
};
- for (i = 0; i < sizeof (rcba2010) / sizeof (rcba2010[0]); i++)
+ for (i = 0; i < sizeof(rcba2010) / sizeof(rcba2010[0]); i++)
{
RCBA32 (0x2010 + 4 * i) = rcba2010[i];
RCBA32 (0x2010 + 4 * i);
@@ -348,7 +348,7 @@ static void mobile5_pm_init(struct device *dev)
/* 2270 */ 0x00001c01, 0x16000000, 0x00010107, 0x00160000
};
- for (i = 0; i < sizeof (rcba2210) / sizeof (rcba2210[0]); i++)
+ for (i = 0; i < sizeof(rcba2210) / sizeof(rcba2210[0]); i++)
{
RCBA32 (0x2210 + 4 * i) = rcba2210[i];
RCBA32 (0x2210 + 4 * i);
@@ -361,7 +361,7 @@ static void mobile5_pm_init(struct device *dev)
/* 2320: */ 0xcccc0cfc, 0x0fbb0fff
};
- for (i = 0; i < sizeof (rcba2300) / sizeof (rcba2300[0]); i++)
+ for (i = 0; i < sizeof(rcba2300) / sizeof(rcba2300[0]); i++)
{
RCBA32 (0x2300 + 4 * i) = rcba2300[i];
RCBA32 (0x2300 + 4 * i);
@@ -619,7 +619,7 @@ static void set_subsystem(device_t dev, unsigned vendor, unsigned device)
static void southbridge_inject_dsdt(device_t dev)
{
- global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof (*gnvs));
+ global_nvs_t *gnvs = cbmem_add (CBMEM_ID_ACPI_GNVS, sizeof(*gnvs));
void *opregion;
/* Calling northbridge code as gnvs contains opregion address. */
@@ -627,7 +627,7 @@ static void southbridge_inject_dsdt(device_t dev)
if (gnvs) {
const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
- memset(gnvs, 0, sizeof (*gnvs));
+ memset(gnvs, 0, sizeof(*gnvs));
acpi_create_gnvs(gnvs);