Commit b25f7cb3 authored by Alexon Oliveira's avatar Alexon Oliveira Committed by Greg Kroah-Hartman

staging: vme_user: fix check alignment of open parenthesis in vme_fake.c

Fixed all CHECK: Alignment should match open parenthesis
as reported by checkpatch to adhere to the Linux kernel
coding-style guidelines.
Signed-off-by: default avatarAlexon Oliveira <alexondunkan@gmail.com>
Link: https://lore.kernel.org/r/639fc19f5c5bce6557a813728b28c299c5134ecf.1693164540.git.alexondunkan@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8e050848
...@@ -105,7 +105,7 @@ static void fake_VIRQ_tasklet(unsigned long data) ...@@ -105,7 +105,7 @@ static void fake_VIRQ_tasklet(unsigned long data)
* Configure VME interrupt * Configure VME interrupt
*/ */
static void fake_irq_set(struct vme_bridge *fake_bridge, int level, static void fake_irq_set(struct vme_bridge *fake_bridge, int level,
int state, int sync) int state, int sync)
{ {
/* Nothing to do */ /* Nothing to do */
} }
...@@ -125,7 +125,7 @@ static dma_addr_t fake_ptr_to_pci(void *addr) ...@@ -125,7 +125,7 @@ static dma_addr_t fake_ptr_to_pci(void *addr)
* interrupt to be acked. * interrupt to be acked.
*/ */
static int fake_irq_generate(struct vme_bridge *fake_bridge, int level, static int fake_irq_generate(struct vme_bridge *fake_bridge, int level,
int statid) int statid)
{ {
struct fake_driver *bridge; struct fake_driver *bridge;
...@@ -152,8 +152,8 @@ static int fake_irq_generate(struct vme_bridge *fake_bridge, int level, ...@@ -152,8 +152,8 @@ static int fake_irq_generate(struct vme_bridge *fake_bridge, int level,
* Initialize a slave window with the requested attributes. * Initialize a slave window with the requested attributes.
*/ */
static int fake_slave_set(struct vme_slave_resource *image, int enabled, static int fake_slave_set(struct vme_slave_resource *image, int enabled,
unsigned long long vme_base, unsigned long long size, unsigned long long vme_base, unsigned long long size,
dma_addr_t buf_base, u32 aspace, u32 cycle) dma_addr_t buf_base, u32 aspace, u32 cycle)
{ {
unsigned int i, granularity = 0; unsigned int i, granularity = 0;
unsigned long long vme_bound; unsigned long long vme_bound;
...@@ -221,8 +221,8 @@ static int fake_slave_set(struct vme_slave_resource *image, int enabled, ...@@ -221,8 +221,8 @@ static int fake_slave_set(struct vme_slave_resource *image, int enabled,
* Get slave window configuration. * Get slave window configuration.
*/ */
static int fake_slave_get(struct vme_slave_resource *image, int *enabled, static int fake_slave_get(struct vme_slave_resource *image, int *enabled,
unsigned long long *vme_base, unsigned long long *size, unsigned long long *vme_base, unsigned long long *size,
dma_addr_t *buf_base, u32 *aspace, u32 *cycle) dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
{ {
unsigned int i; unsigned int i;
struct fake_driver *bridge; struct fake_driver *bridge;
...@@ -249,8 +249,8 @@ static int fake_slave_get(struct vme_slave_resource *image, int *enabled, ...@@ -249,8 +249,8 @@ static int fake_slave_get(struct vme_slave_resource *image, int *enabled,
* Set the attributes of an outbound window. * Set the attributes of an outbound window.
*/ */
static int fake_master_set(struct vme_master_resource *image, int enabled, static int fake_master_set(struct vme_master_resource *image, int enabled,
unsigned long long vme_base, unsigned long long size, unsigned long long vme_base, unsigned long long size,
u32 aspace, u32 cycle, u32 dwidth) u32 aspace, u32 cycle, u32 dwidth)
{ {
int retval = 0; int retval = 0;
unsigned int i; unsigned int i;
...@@ -335,8 +335,8 @@ static int fake_master_set(struct vme_master_resource *image, int enabled, ...@@ -335,8 +335,8 @@ static int fake_master_set(struct vme_master_resource *image, int enabled,
* Set the attributes of an outbound window. * Set the attributes of an outbound window.
*/ */
static int __fake_master_get(struct vme_master_resource *image, int *enabled, static int __fake_master_get(struct vme_master_resource *image, int *enabled,
unsigned long long *vme_base, unsigned long long *size, unsigned long long *vme_base, unsigned long long *size,
u32 *aspace, u32 *cycle, u32 *dwidth) u32 *aspace, u32 *cycle, u32 *dwidth)
{ {
unsigned int i; unsigned int i;
struct fake_driver *bridge; struct fake_driver *bridge;
...@@ -356,15 +356,15 @@ static int __fake_master_get(struct vme_master_resource *image, int *enabled, ...@@ -356,15 +356,15 @@ static int __fake_master_get(struct vme_master_resource *image, int *enabled,
} }
static int fake_master_get(struct vme_master_resource *image, int *enabled, static int fake_master_get(struct vme_master_resource *image, int *enabled,
unsigned long long *vme_base, unsigned long long *size, unsigned long long *vme_base, unsigned long long *size,
u32 *aspace, u32 *cycle, u32 *dwidth) u32 *aspace, u32 *cycle, u32 *dwidth)
{ {
int retval; int retval;
spin_lock(&image->lock); spin_lock(&image->lock);
retval = __fake_master_get(image, enabled, vme_base, size, aspace, retval = __fake_master_get(image, enabled, vme_base, size, aspace,
cycle, dwidth); cycle, dwidth);
spin_unlock(&image->lock); spin_unlock(&image->lock);
...@@ -511,7 +511,7 @@ static noinline_for_stack u32 fake_vmeread32(struct fake_driver *bridge, ...@@ -511,7 +511,7 @@ static noinline_for_stack u32 fake_vmeread32(struct fake_driver *bridge,
} }
static ssize_t fake_master_read(struct vme_master_resource *image, void *buf, static ssize_t fake_master_read(struct vme_master_resource *image, void *buf,
size_t count, loff_t offset) size_t count, loff_t offset)
{ {
int retval; int retval;
u32 aspace, cycle, dwidth; u32 aspace, cycle, dwidth;
...@@ -700,7 +700,7 @@ static noinline_for_stack void fake_vmewrite32(struct fake_driver *bridge, ...@@ -700,7 +700,7 @@ static noinline_for_stack void fake_vmewrite32(struct fake_driver *bridge,
} }
static ssize_t fake_master_write(struct vme_master_resource *image, void *buf, static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
size_t count, loff_t offset) size_t count, loff_t offset)
{ {
int retval = 0; int retval = 0;
u32 aspace, cycle, dwidth; u32 aspace, cycle, dwidth;
...@@ -739,7 +739,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf, ...@@ -739,7 +739,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
if ((addr + done) & 0x2) { if ((addr + done) & 0x2) {
if ((count - done) < 2) { if ((count - done) < 2) {
fake_vmewrite8(bridge, (u8 *)(buf + done), fake_vmewrite8(bridge, (u8 *)(buf + done),
addr + done, aspace, cycle); addr + done, aspace, cycle);
done += 1; done += 1;
goto out; goto out;
} else { } else {
...@@ -768,7 +768,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf, ...@@ -768,7 +768,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
count32 = (count - done); count32 = (count - done);
while (done < count32) { while (done < count32) {
fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done, fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done,
aspace, cycle); aspace, cycle);
done += 1; done += 1;
} }
...@@ -784,7 +784,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf, ...@@ -784,7 +784,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
if ((count - done) & 0x1) { if ((count - done) & 0x1) {
fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done, aspace, fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done, aspace,
cycle); cycle);
done += 1; done += 1;
} }
...@@ -802,8 +802,8 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf, ...@@ -802,8 +802,8 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
* Requires a previously configured master window, returns final value. * Requires a previously configured master window, returns final value.
*/ */
static unsigned int fake_master_rmw(struct vme_master_resource *image, static unsigned int fake_master_rmw(struct vme_master_resource *image,
unsigned int mask, unsigned int compare, unsigned int swap, unsigned int mask, unsigned int compare,
loff_t offset) unsigned int swap, loff_t offset)
{ {
u32 tmp, base; u32 tmp, base;
u32 aspace, cycle; u32 aspace, cycle;
...@@ -848,7 +848,7 @@ static unsigned int fake_master_rmw(struct vme_master_resource *image, ...@@ -848,7 +848,7 @@ static unsigned int fake_master_rmw(struct vme_master_resource *image,
* callback is attached and disabled when the last callback is removed. * callback is attached and disabled when the last callback is removed.
*/ */
static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base, static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base,
u32 aspace, u32 cycle) u32 aspace, u32 cycle)
{ {
int i; int i;
struct vme_bridge *fake_bridge; struct vme_bridge *fake_bridge;
...@@ -894,7 +894,8 @@ static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base, ...@@ -894,7 +894,8 @@ static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base,
* or disabled. * or disabled.
*/ */
static int fake_lm_get(struct vme_lm_resource *lm, static int fake_lm_get(struct vme_lm_resource *lm,
unsigned long long *lm_base, u32 *aspace, u32 *cycle) unsigned long long *lm_base,
u32 *aspace, u32 *cycle)
{ {
struct fake_driver *bridge; struct fake_driver *bridge;
...@@ -917,7 +918,7 @@ static int fake_lm_get(struct vme_lm_resource *lm, ...@@ -917,7 +918,7 @@ static int fake_lm_get(struct vme_lm_resource *lm,
* Callback will be passed the monitor triggered. * Callback will be passed the monitor triggered.
*/ */
static int fake_lm_attach(struct vme_lm_resource *lm, int monitor, static int fake_lm_attach(struct vme_lm_resource *lm, int monitor,
void (*callback)(void *), void *data) void (*callback)(void *), void *data)
{ {
struct vme_bridge *fake_bridge; struct vme_bridge *fake_bridge;
struct fake_driver *bridge; struct fake_driver *bridge;
...@@ -995,7 +996,7 @@ static int fake_slot_get(struct vme_bridge *fake_bridge) ...@@ -995,7 +996,7 @@ static int fake_slot_get(struct vme_bridge *fake_bridge)
} }
static void *fake_alloc_consistent(struct device *parent, size_t size, static void *fake_alloc_consistent(struct device *parent, size_t size,
dma_addr_t *dma) dma_addr_t *dma)
{ {
void *alloc = kmalloc(size, GFP_KERNEL); void *alloc = kmalloc(size, GFP_KERNEL);
...@@ -1006,7 +1007,7 @@ static void *fake_alloc_consistent(struct device *parent, size_t size, ...@@ -1006,7 +1007,7 @@ static void *fake_alloc_consistent(struct device *parent, size_t size,
} }
static void fake_free_consistent(struct device *parent, size_t size, static void fake_free_consistent(struct device *parent, size_t size,
void *vaddr, dma_addr_t dma) void *vaddr, dma_addr_t dma)
{ {
kfree(vaddr); kfree(vaddr);
/* /*
...@@ -1094,7 +1095,7 @@ static int __init fake_init(void) ...@@ -1094,7 +1095,7 @@ static int __init fake_init(void)
mutex_init(&fake_device->vme_int); mutex_init(&fake_device->vme_int);
mutex_init(&fake_bridge->irq_mtx); mutex_init(&fake_bridge->irq_mtx);
tasklet_init(&fake_device->int_tasklet, fake_VIRQ_tasklet, tasklet_init(&fake_device->int_tasklet, fake_VIRQ_tasklet,
(unsigned long) fake_bridge); (unsigned long) fake_bridge);
strcpy(fake_bridge->name, driver_name); strcpy(fake_bridge->name, driver_name);
...@@ -1118,10 +1119,10 @@ static int __init fake_init(void) ...@@ -1118,10 +1119,10 @@ static int __init fake_init(void)
VME_PROG | VME_DATA; VME_PROG | VME_DATA;
master_image->width_attr = VME_D16 | VME_D32; master_image->width_attr = VME_D16 | VME_D32;
memset(&master_image->bus_resource, 0, memset(&master_image->bus_resource, 0,
sizeof(struct resource)); sizeof(struct resource));
master_image->kern_base = NULL; master_image->kern_base = NULL;
list_add_tail(&master_image->list, list_add_tail(&master_image->list,
&fake_bridge->master_resources); &fake_bridge->master_resources);
} }
/* Add slave windows to list */ /* Add slave windows to list */
...@@ -1144,7 +1145,7 @@ static int __init fake_init(void) ...@@ -1144,7 +1145,7 @@ static int __init fake_init(void)
VME_2eSST267 | VME_2eSST320 | VME_SUPER | VME_USER | VME_2eSST267 | VME_2eSST320 | VME_SUPER | VME_USER |
VME_PROG | VME_DATA; VME_PROG | VME_DATA;
list_add_tail(&slave_image->list, list_add_tail(&slave_image->list,
&fake_bridge->slave_resources); &fake_bridge->slave_resources);
} }
/* Add location monitor to list */ /* Add location monitor to list */
...@@ -1179,7 +1180,7 @@ static int __init fake_init(void) ...@@ -1179,7 +1180,7 @@ static int __init fake_init(void)
fake_bridge->free_consistent = fake_free_consistent; fake_bridge->free_consistent = fake_free_consistent;
pr_info("Board is%s the VME system controller\n", pr_info("Board is%s the VME system controller\n",
(geoid == 1) ? "" : " not"); (geoid == 1) ? "" : " not");
pr_info("VME geographical address is set to %d\n", geoid); pr_info("VME geographical address is set to %d\n", geoid);
...@@ -1220,7 +1221,7 @@ static int __init fake_init(void) ...@@ -1220,7 +1221,7 @@ static int __init fake_init(void)
/* resources are stored in link list */ /* resources are stored in link list */
list_for_each_safe(pos, n, &fake_bridge->master_resources) { list_for_each_safe(pos, n, &fake_bridge->master_resources) {
master_image = list_entry(pos, struct vme_master_resource, master_image = list_entry(pos, struct vme_master_resource,
list); list);
list_del(pos); list_del(pos);
kfree(master_image); kfree(master_image);
} }
...@@ -1275,7 +1276,7 @@ static void __exit fake_exit(void) ...@@ -1275,7 +1276,7 @@ static void __exit fake_exit(void)
/* resources are stored in link list */ /* resources are stored in link list */
list_for_each_safe(pos, tmplist, &fake_bridge->master_resources) { list_for_each_safe(pos, tmplist, &fake_bridge->master_resources) {
master_image = list_entry(pos, struct vme_master_resource, master_image = list_entry(pos, struct vme_master_resource,
list); list);
list_del(pos); list_del(pos);
kfree(master_image); kfree(master_image);
} }
......
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