aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wfx/wfx.h
diff options
context:
space:
mode:
authorJules Irenge <jbi.octave@gmail.com>2019-11-13 11:00:52 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-11-14 11:10:48 +0800
commit8c7128c4cf4e0e6eb67bd65b4dbe619c3d297bb6 (patch)
tree13aa03e37fb2cb7898ba982983ceb09d2b42cee5 /drivers/staging/wfx/wfx.h
parentstaging: exfat: fix indentation issue (diff)
downloadlinux-dev-8c7128c4cf4e0e6eb67bd65b4dbe619c3d297bb6.tar.xz
linux-dev-8c7128c4cf4e0e6eb67bd65b4dbe619c3d297bb6.zip
staging: align to fix warnings of line over 80 characters
Align to fix multiple warnings of line over 80 characters. Issue detected by checkpatch tool. Signed-off-by: Jules Irenge <jbi.octave@gmail.com> Link: https://lore.kernel.org/r/20191113110052.14855-1-jbi.octave@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wfx/wfx.h')
-rw-r--r--drivers/staging/wfx/wfx.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/wfx/wfx.h b/drivers/staging/wfx/wfx.h
index 44e580a07c91..781a8c8ba982 100644
--- a/drivers/staging/wfx/wfx.h
+++ b/drivers/staging/wfx/wfx.h
@@ -141,13 +141,15 @@ static inline struct wfx_vif *wdev_to_wvif(struct wfx_dev *wdev, int vif_id)
}
vif_id = array_index_nospec(vif_id, ARRAY_SIZE(wdev->vif));
if (!wdev->vif[vif_id]) {
- dev_dbg(wdev->dev, "requesting non-allocated vif: %d\n", vif_id);
+ dev_dbg(wdev->dev, "requesting non-allocated vif: %d\n",
+ vif_id);
return NULL;
}
return (struct wfx_vif *) wdev->vif[vif_id]->drv_priv;
}
-static inline struct wfx_vif *wvif_iterate(struct wfx_dev *wdev, struct wfx_vif *cur)
+static inline struct wfx_vif *wvif_iterate(struct wfx_dev *wdev,
+ struct wfx_vif *cur)
{
int i;
int mark = 0;