Resolving 2 checkpatch warnings generated due to:
CHECK: spaces preferred around that '-'

Signed-off-by: Matthew Giassa <matt...@giassa.net>
---
 drivers/staging/vt6656/rf.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/vt6656/rf.c b/drivers/staging/vt6656/rf.c
index 0e3a62a..fe09627 100644
--- a/drivers/staging/vt6656/rf.c
+++ b/drivers/staging/vt6656/rf.c
@@ -611,7 +611,7 @@ int vnt_rf_write_embedded(struct vnt_private *priv, u32 
data)
        reg_data[3] = (u8)(data >> 24);
 
        vnt_control_out(priv, MESSAGE_TYPE_WRITE_IFRF,
-                               0, 0, ARRAY_SIZE(reg_data), reg_data);
+                       0, 0, ARRAY_SIZE(reg_data), reg_data);
 
        return true;
 }
@@ -643,9 +643,9 @@ int vnt_rf_setpower(struct vnt_private *priv, u32 rate, u32 
channel)
        case RATE_48M:
        case RATE_54M:
                if (channel > CB_MAX_CHANNEL_24G)
-                       power = priv->ofdm_a_pwr_tbl[channel-15];
+                       power = priv->ofdm_a_pwr_tbl[channel - 15];
                else
-                       power = priv->ofdm_pwr_tbl[channel-1];
+                       power = priv->ofdm_pwr_tbl[channel - 1];
                break;
        }
 
-- 
2.7.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to