Commit 4f9d8b7e authored by Simon Sandström's avatar Simon Sandström Committed by Greg Kroah-Hartman

staging: kpc2000: fix alignment issues in cell_probe.c

Fixes checkpatch.pl warnings "Alignment should match open parenthesis"
and "Lines should not end with a '('".
Signed-off-by: default avatarSimon Sandström <simon@nikanor.nu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 250b2441
...@@ -128,15 +128,13 @@ static int probe_core_basic(unsigned int core_num, struct kp2000_device *pcard, ...@@ -128,15 +128,13 @@ static int probe_core_basic(unsigned int core_num, struct kp2000_device *pcard,
cell.resources = resources; cell.resources = resources;
return mfd_add_devices( return mfd_add_devices(PCARD_TO_DEV(pcard), // parent
PCARD_TO_DEV(pcard), // parent pcard->card_num * 100, // id
pcard->card_num * 100, // id &cell, // struct mfd_cell *
&cell, // struct mfd_cell * 1, // ndevs
1, // ndevs &pcard->regs_base_resource,
&pcard->regs_base_resource, 0, // irq_base
0, // irq_base NULL); // struct irq_domain *
NULL // struct irq_domain *
);
} }
...@@ -373,15 +371,13 @@ static int create_dma_engine_core(struct kp2000_device *pcard, size_t engine_re ...@@ -373,15 +371,13 @@ static int create_dma_engine_core(struct kp2000_device *pcard, size_t engine_re
cell.resources = resources; cell.resources = resources;
return mfd_add_devices( return mfd_add_devices(PCARD_TO_DEV(pcard), // parent
PCARD_TO_DEV(pcard), // parent pcard->card_num * 100, // id
pcard->card_num * 100, // id &cell, // struct mfd_cell *
&cell, // struct mfd_cell * 1, // ndevs
1, // ndevs &pcard->dma_base_resource,
&pcard->dma_base_resource, 0, // irq_base
0, // irq_base NULL); // struct irq_domain *
NULL // struct irq_domain *
);
} }
static int kp2000_setup_dma_controller(struct kp2000_device *pcard) static int kp2000_setup_dma_controller(struct kp2000_device *pcard)
...@@ -462,7 +458,7 @@ int kp2000_probe_cores(struct kp2000_device *pcard) ...@@ -462,7 +458,7 @@ int kp2000_probe_cores(struct kp2000_device *pcard)
switch (cte.type) { switch (cte.type) {
case KP_CORE_ID_I2C: case KP_CORE_ID_I2C:
err = probe_core_basic(core_num, pcard, err = probe_core_basic(core_num, pcard,
KP_DRIVER_NAME_I2C, cte); KP_DRIVER_NAME_I2C, cte);
break; break;
case KP_CORE_ID_SPI: case KP_CORE_ID_SPI:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment