summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wfx/bus.h
diff options
context:
space:
mode:
authorJules Irenge <jbi.octave@gmail.com>2019-10-19 15:07:16 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-26 20:43:46 +0200
commit1dc3d53ef39061a8cdf2245324e4f1769c4a360a (patch)
treec65ee92744650d0954cfa692595ab35ab715c100 /drivers/staging/wfx/bus.h
parentbc9496e5b4d603b1069a49422900a6b591f4d504 (diff)
staging: wfx: fix warning of line over 80 characters
Fix warning of lines over 80 characters. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge <jbi.octave@gmail.com> Link: https://lore.kernel.org/r/20191019140719.2542-3-jbi.octave@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wfx/bus.h')
-rw-r--r--drivers/staging/wfx/bus.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/wfx/bus.h b/drivers/staging/wfx/bus.h
index eb77abc09ec2..62d6ecabe4cb 100644
--- a/drivers/staging/wfx/bus.h
+++ b/drivers/staging/wfx/bus.h
@@ -21,8 +21,10 @@
#define WFX_REG_FRAME_OUT 0x7
struct hwbus_ops {
- int (*copy_from_io)(void *bus_priv, unsigned int addr, void *dst, size_t count);
- int (*copy_to_io)(void *bus_priv, unsigned int addr, const void *src, size_t count);
+ int (*copy_from_io)(void *bus_priv, unsigned int addr,
+ void *dst, size_t count);
+ int (*copy_to_io)(void *bus_priv, unsigned int addr,
+ const void *src, size_t count);
void (*lock)(void *bus_priv);
void (*unlock)(void *bus_priv);
size_t (*align_size)(void *bus_priv, size_t size);