mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-08 00:29:36 -04:00
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: Alexon Oliveira <alexondunkan@gmail.com> Link: https://lore.kernel.org/r/639fc19f5c5bce6557a813728b28c299c5134ecf.1693164540.git.alexondunkan@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8e050848c7
commit
b25f7cb305
@@ -105,7 +105,7 @@ static void fake_VIRQ_tasklet(unsigned long data)
|
||||
* Configure VME interrupt
|
||||
*/
|
||||
static void fake_irq_set(struct vme_bridge *fake_bridge, int level,
|
||||
int state, int sync)
|
||||
int state, int sync)
|
||||
{
|
||||
/* Nothing to do */
|
||||
}
|
||||
@@ -125,7 +125,7 @@ static dma_addr_t fake_ptr_to_pci(void *addr)
|
||||
* interrupt to be acked.
|
||||
*/
|
||||
static int fake_irq_generate(struct vme_bridge *fake_bridge, int level,
|
||||
int statid)
|
||||
int statid)
|
||||
{
|
||||
struct fake_driver *bridge;
|
||||
|
||||
@@ -152,8 +152,8 @@ static int fake_irq_generate(struct vme_bridge *fake_bridge, int level,
|
||||
* Initialize a slave window with the requested attributes.
|
||||
*/
|
||||
static int fake_slave_set(struct vme_slave_resource *image, int enabled,
|
||||
unsigned long long vme_base, unsigned long long size,
|
||||
dma_addr_t buf_base, u32 aspace, u32 cycle)
|
||||
unsigned long long vme_base, unsigned long long size,
|
||||
dma_addr_t buf_base, u32 aspace, u32 cycle)
|
||||
{
|
||||
unsigned int i, granularity = 0;
|
||||
unsigned long long vme_bound;
|
||||
@@ -221,8 +221,8 @@ static int fake_slave_set(struct vme_slave_resource *image, int enabled,
|
||||
* Get slave window configuration.
|
||||
*/
|
||||
static int fake_slave_get(struct vme_slave_resource *image, int *enabled,
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
dma_addr_t *buf_base, u32 *aspace, u32 *cycle)
|
||||
{
|
||||
unsigned int i;
|
||||
struct fake_driver *bridge;
|
||||
@@ -249,8 +249,8 @@ static int fake_slave_get(struct vme_slave_resource *image, int *enabled,
|
||||
* Set the attributes of an outbound window.
|
||||
*/
|
||||
static int fake_master_set(struct vme_master_resource *image, int enabled,
|
||||
unsigned long long vme_base, unsigned long long size,
|
||||
u32 aspace, u32 cycle, u32 dwidth)
|
||||
unsigned long long vme_base, unsigned long long size,
|
||||
u32 aspace, u32 cycle, u32 dwidth)
|
||||
{
|
||||
int retval = 0;
|
||||
unsigned int i;
|
||||
@@ -335,8 +335,8 @@ static int fake_master_set(struct vme_master_resource *image, int enabled,
|
||||
* Set the attributes of an outbound window.
|
||||
*/
|
||||
static int __fake_master_get(struct vme_master_resource *image, int *enabled,
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
u32 *aspace, u32 *cycle, u32 *dwidth)
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
u32 *aspace, u32 *cycle, u32 *dwidth)
|
||||
{
|
||||
unsigned int i;
|
||||
struct fake_driver *bridge;
|
||||
@@ -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,
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
u32 *aspace, u32 *cycle, u32 *dwidth)
|
||||
unsigned long long *vme_base, unsigned long long *size,
|
||||
u32 *aspace, u32 *cycle, u32 *dwidth)
|
||||
{
|
||||
int retval;
|
||||
|
||||
spin_lock(&image->lock);
|
||||
|
||||
retval = __fake_master_get(image, enabled, vme_base, size, aspace,
|
||||
cycle, dwidth);
|
||||
cycle, dwidth);
|
||||
|
||||
spin_unlock(&image->lock);
|
||||
|
||||
@@ -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,
|
||||
size_t count, loff_t offset)
|
||||
size_t count, loff_t offset)
|
||||
{
|
||||
int retval;
|
||||
u32 aspace, cycle, dwidth;
|
||||
@@ -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,
|
||||
size_t count, loff_t offset)
|
||||
size_t count, loff_t offset)
|
||||
{
|
||||
int retval = 0;
|
||||
u32 aspace, cycle, dwidth;
|
||||
@@ -739,7 +739,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
|
||||
if ((addr + done) & 0x2) {
|
||||
if ((count - done) < 2) {
|
||||
fake_vmewrite8(bridge, (u8 *)(buf + done),
|
||||
addr + done, aspace, cycle);
|
||||
addr + done, aspace, cycle);
|
||||
done += 1;
|
||||
goto out;
|
||||
} else {
|
||||
@@ -768,7 +768,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
|
||||
count32 = (count - done);
|
||||
while (done < count32) {
|
||||
fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done,
|
||||
aspace, cycle);
|
||||
aspace, cycle);
|
||||
done += 1;
|
||||
}
|
||||
|
||||
@@ -784,7 +784,7 @@ static ssize_t fake_master_write(struct vme_master_resource *image, void *buf,
|
||||
|
||||
if ((count - done) & 0x1) {
|
||||
fake_vmewrite8(bridge, (u8 *)(buf + done), addr + done, aspace,
|
||||
cycle);
|
||||
cycle);
|
||||
done += 1;
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
static unsigned int fake_master_rmw(struct vme_master_resource *image,
|
||||
unsigned int mask, unsigned int compare, unsigned int swap,
|
||||
loff_t offset)
|
||||
unsigned int mask, unsigned int compare,
|
||||
unsigned int swap, loff_t offset)
|
||||
{
|
||||
u32 tmp, base;
|
||||
u32 aspace, cycle;
|
||||
@@ -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.
|
||||
*/
|
||||
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;
|
||||
struct vme_bridge *fake_bridge;
|
||||
@@ -894,7 +894,8 @@ static int fake_lm_set(struct vme_lm_resource *lm, unsigned long long lm_base,
|
||||
* or disabled.
|
||||
*/
|
||||
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;
|
||||
|
||||
@@ -917,7 +918,7 @@ static int fake_lm_get(struct vme_lm_resource *lm,
|
||||
* Callback will be passed the monitor triggered.
|
||||
*/
|
||||
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 fake_driver *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,
|
||||
dma_addr_t *dma)
|
||||
dma_addr_t *dma)
|
||||
{
|
||||
void *alloc = kmalloc(size, GFP_KERNEL);
|
||||
|
||||
@@ -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,
|
||||
void *vaddr, dma_addr_t dma)
|
||||
void *vaddr, dma_addr_t dma)
|
||||
{
|
||||
kfree(vaddr);
|
||||
/*
|
||||
@@ -1094,7 +1095,7 @@ static int __init fake_init(void)
|
||||
mutex_init(&fake_device->vme_int);
|
||||
mutex_init(&fake_bridge->irq_mtx);
|
||||
tasklet_init(&fake_device->int_tasklet, fake_VIRQ_tasklet,
|
||||
(unsigned long) fake_bridge);
|
||||
(unsigned long) fake_bridge);
|
||||
|
||||
strcpy(fake_bridge->name, driver_name);
|
||||
|
||||
@@ -1118,10 +1119,10 @@ static int __init fake_init(void)
|
||||
VME_PROG | VME_DATA;
|
||||
master_image->width_attr = VME_D16 | VME_D32;
|
||||
memset(&master_image->bus_resource, 0,
|
||||
sizeof(struct resource));
|
||||
sizeof(struct resource));
|
||||
master_image->kern_base = NULL;
|
||||
list_add_tail(&master_image->list,
|
||||
&fake_bridge->master_resources);
|
||||
&fake_bridge->master_resources);
|
||||
}
|
||||
|
||||
/* Add slave windows to list */
|
||||
@@ -1144,7 +1145,7 @@ static int __init fake_init(void)
|
||||
VME_2eSST267 | VME_2eSST320 | VME_SUPER | VME_USER |
|
||||
VME_PROG | VME_DATA;
|
||||
list_add_tail(&slave_image->list,
|
||||
&fake_bridge->slave_resources);
|
||||
&fake_bridge->slave_resources);
|
||||
}
|
||||
|
||||
/* Add location monitor to list */
|
||||
@@ -1179,7 +1180,7 @@ static int __init fake_init(void)
|
||||
fake_bridge->free_consistent = fake_free_consistent;
|
||||
|
||||
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);
|
||||
|
||||
@@ -1220,7 +1221,7 @@ static int __init fake_init(void)
|
||||
/* resources are stored in link list */
|
||||
list_for_each_safe(pos, n, &fake_bridge->master_resources) {
|
||||
master_image = list_entry(pos, struct vme_master_resource,
|
||||
list);
|
||||
list);
|
||||
list_del(pos);
|
||||
kfree(master_image);
|
||||
}
|
||||
@@ -1275,7 +1276,7 @@ static void __exit fake_exit(void)
|
||||
/* resources are stored in link list */
|
||||
list_for_each_safe(pos, tmplist, &fake_bridge->master_resources) {
|
||||
master_image = list_entry(pos, struct vme_master_resource,
|
||||
list);
|
||||
list);
|
||||
list_del(pos);
|
||||
kfree(master_image);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user