lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <627723b2e55bfc71dfbb4e1fe2594521@208suo.com>
Date:   Tue, 18 Jul 2023 10:16:34 +0800
From:   sunran001@...suo.com
To:     mchehab@...nel.org
Cc:     linux-media@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] media: dib8000: remove spaces after '*'

Fix four occurrences of the checkpatch error:

ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Ran Sun <sunran001@...suo.com>
---
  drivers/media/dvb-frontends/dib8000.c | 8 ++++----
  1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/media/dvb-frontends/dib8000.c 
b/drivers/media/dvb-frontends/dib8000.c
index 2abda7d1cb6e..43731167146f 100644
--- a/drivers/media/dvb-frontends/dib8000.c
+++ b/drivers/media/dvb-frontends/dib8000.c
@@ -3806,7 +3806,7 @@ static int dib8000_read_status(struct dvb_frontend 
*fe, enum fe_status *stat)
      return 0;
  }

-static int dib8000_read_ber(struct dvb_frontend *fe, u32 * ber)
+static int dib8000_read_ber(struct dvb_frontend *fe, u32 *ber)
  {
      struct dib8000_state *state = fe->demodulator_priv;

@@ -3820,7 +3820,7 @@ static int dib8000_read_ber(struct dvb_frontend 
*fe, u32 * ber)
      return 0;
  }

-static int dib8000_read_unc_blocks(struct dvb_frontend *fe, u32 * unc)
+static int dib8000_read_unc_blocks(struct dvb_frontend *fe, u32 *unc)
  {
      struct dib8000_state *state = fe->demodulator_priv;

@@ -3832,7 +3832,7 @@ static int dib8000_read_unc_blocks(struct 
dvb_frontend *fe, u32 * unc)
      return 0;
  }

-static int dib8000_read_signal_strength(struct dvb_frontend *fe, u16 * 
strength)
+static int dib8000_read_signal_strength(struct dvb_frontend *fe, u16 
*strength)
  {
      struct dib8000_state *state = fe->demodulator_priv;
      u8 index_frontend;
@@ -3888,7 +3888,7 @@ static u32 dib8000_get_snr(struct dvb_frontend 
*fe)
      return 0xffffffff;
  }

-static int dib8000_read_snr(struct dvb_frontend *fe, u16 * snr)
+static int dib8000_read_snr(struct dvb_frontend *fe, u16 *snr)
  {
      struct dib8000_state *state = fe->demodulator_priv;
      u8 index_frontend;

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ