summaryrefslogtreecommitdiffstats
path: root/drivers/staging/wimax
diff options
context:
space:
mode:
authorAnirudh Rayabharam <mail@anirudhrb.com>2021-01-30 23:14:54 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-01-31 13:36:52 +0100
commitc38e1fb9b6e1ffe8e6b4cfaa8f62272376e96e54 (patch)
tree233dc815acfb40b4f0f22a9d87578b9e680dd4ff /drivers/staging/wimax
parent02bd88b4834d22cedd47f17fbce6cfa66a323287 (diff)
downloadlinux-stable-c38e1fb9b6e1ffe8e6b4cfaa8f62272376e96e54.tar.gz
linux-stable-c38e1fb9b6e1ffe8e6b4cfaa8f62272376e96e54.tar.bz2
linux-stable-c38e1fb9b6e1ffe8e6b4cfaa8f62272376e96e54.zip
staging: wimax/i2400m: fix pointer declaration style
Fix a couple of pointer declarations where the pointer qualifier '*' is not attached to the variable name. This fixes the checkpatch error: "foo * bar" should be "foo *bar". Signed-off-by: Anirudh Rayabharam <mail@anirudhrb.com> Link: https://lore.kernel.org/r/20210130174454.11810-1-mail@anirudhrb.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wimax')
-rw-r--r--drivers/staging/wimax/i2400m/rx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wimax/i2400m/rx.c b/drivers/staging/wimax/i2400m/rx.c
index c9fb619a9e01..5b3a85035f6a 100644
--- a/drivers/staging/wimax/i2400m/rx.c
+++ b/drivers/staging/wimax/i2400m/rx.c
@@ -819,7 +819,7 @@ void i2400m_roq_reset(struct i2400m *i2400m, struct i2400m_roq *roq)
*/
static
void i2400m_roq_queue(struct i2400m *i2400m, struct i2400m_roq *roq,
- struct sk_buff * skb, unsigned lbn)
+ struct sk_buff *skb, unsigned lbn)
{
struct device *dev = i2400m_dev(i2400m);
unsigned nsn, len;
@@ -882,7 +882,7 @@ void i2400m_roq_update_ws(struct i2400m *i2400m, struct i2400m_roq *roq,
*/
static
void i2400m_roq_queue_update_ws(struct i2400m *i2400m, struct i2400m_roq *roq,
- struct sk_buff * skb, unsigned sn)
+ struct sk_buff *skb, unsigned sn)
{
struct device *dev = i2400m_dev(i2400m);
unsigned nsn, old_ws, len;