diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-11-13 10:03:31 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-11-19 08:17:06 +0000 |
commit | 0ce41f1a116a816e774ebbd1130d27d7ee70e7e9 (patch) | |
tree | 983a793e01bbf09ed1e9c74534d4b78f9d3f2866 /src/superio/nsc | |
parent | 16f9bf83e00c786275d3fcc9d512d145ef6c93c9 (diff) | |
download | coreboot-0ce41f1a116a816e774ebbd1130d27d7ee70e7e9.tar.xz |
src: Add required space after "switch"
Change-Id: I85cf93e30606bc7838852bd300a369e79370629a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/29623
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/superio/nsc')
-rw-r--r-- | src/superio/nsc/pc87360/superio.c | 2 | ||||
-rw-r--r-- | src/superio/nsc/pc87366/superio.c | 2 | ||||
-rw-r--r-- | src/superio/nsc/pc87382/superio.c | 2 | ||||
-rw-r--r-- | src/superio/nsc/pc87417/superio.c | 2 | ||||
-rw-r--r-- | src/superio/nsc/pc97317/superio.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/superio/nsc/pc87360/superio.c b/src/superio/nsc/pc87360/superio.c index 5b590ea351..a9eba4b4b3 100644 --- a/src/superio/nsc/pc87360/superio.c +++ b/src/superio/nsc/pc87360/superio.c @@ -28,7 +28,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87360_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc87366/superio.c b/src/superio/nsc/pc87366/superio.c index feaed3b925..dbb763deea 100644 --- a/src/superio/nsc/pc87366/superio.c +++ b/src/superio/nsc/pc87366/superio.c @@ -28,7 +28,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87366_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc87382/superio.c b/src/superio/nsc/pc87382/superio.c index a5d9a8bdcf..688f08c63c 100644 --- a/src/superio/nsc/pc87382/superio.c +++ b/src/superio/nsc/pc87382/superio.c @@ -26,7 +26,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87382_DOCK: break; diff --git a/src/superio/nsc/pc87417/superio.c b/src/superio/nsc/pc87417/superio.c index c8616f665d..bf33d69fb1 100644 --- a/src/superio/nsc/pc87417/superio.c +++ b/src/superio/nsc/pc87417/superio.c @@ -29,7 +29,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87417_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc97317/superio.c b/src/superio/nsc/pc97317/superio.c index 3e664d1f1f..9b2cbac6b6 100644 --- a/src/superio/nsc/pc97317/superio.c +++ b/src/superio/nsc/pc97317/superio.c @@ -26,7 +26,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC97317_KBCK: pnp_set_logical_device(dev); pnp_set_enable(dev, 0); /* Disable keyboard */ |