sio/smsc/kbc1100: Fix some style issues
This fixes indentation and whitespaces before opening parentheses. Change-Id: I8940f712c0161419ee0c383b7bc9eb581967366e Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/20852 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
7c5eb073e7
commit
12d010306b
|
@ -45,26 +45,24 @@ static struct device_operations ops = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct pnp_info pnp_dev_info[] = {
|
static struct pnp_info pnp_dev_info[] = {
|
||||||
{ &ops, KBC1100_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, 0x7ff, 0x7ff, },
|
{ &ops, KBC1100_KBC, PNP_IO0 | PNP_IO1 | PNP_IRQ0 | PNP_IRQ1, 0x7ff,
|
||||||
|
0x7ff, },
|
||||||
};
|
};
|
||||||
|
|
||||||
static void enable_dev(struct device *dev)
|
static void enable_dev(struct device *dev)
|
||||||
{
|
{
|
||||||
pnp_enable_devices(dev, &pnp_ops, ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
|
pnp_enable_devices(dev, &pnp_ops, ARRAY_SIZE(pnp_dev_info),
|
||||||
|
pnp_dev_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void kbc1100_init(struct device *dev)
|
static void kbc1100_init(struct device *dev)
|
||||||
{
|
{
|
||||||
struct resource *res0, *res1;
|
struct resource *res0, *res1;
|
||||||
|
|
||||||
|
if (!dev->enabled)
|
||||||
|
|
||||||
if (!dev->enabled) {
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
switch (dev->path.pnp.device) {
|
switch (dev->path.pnp.device) {
|
||||||
|
|
||||||
case KBC1100_KBC:
|
case KBC1100_KBC:
|
||||||
res0 = find_resource(dev, PNP_IDX_IO0);
|
res0 = find_resource(dev, PNP_IDX_IO0);
|
||||||
res1 = find_resource(dev, PNP_IDX_IO1);
|
res1 = find_resource(dev, PNP_IDX_IO1);
|
||||||
|
|
Loading…
Reference in New Issue