upstream: [media] tda10071: coding style issues
authorAntti Palosaari <crope@iki.fi>
Tue, 11 Feb 2014 18:13:46 +0000 (15:13 -0300)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:54:39 +0000 (11:54 +0900)
Fix some coding style issues, mostly reported by checkpatch.pl.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/dvb-frontends/tda10071.c
drivers/media/dvb-frontends/tda10071.h

index 5bc84c9..49874e7 100644 (file)
@@ -42,8 +42,8 @@ static int tda10071_wr_regs(struct tda10071_priv *priv, u8 reg, u8 *val,
 
        if (1 + len > sizeof(buf)) {
                dev_warn(&priv->i2c->dev,
-                        "%s: i2c wr reg=%04x: len=%d is too big!\n",
-                        KBUILD_MODNAME, reg, len);
+                               "%s: i2c wr reg=%04x: len=%d is too big!\n",
+                               KBUILD_MODNAME, reg, len);
                return -EINVAL;
        }
 
@@ -54,8 +54,9 @@ static int tda10071_wr_regs(struct tda10071_priv *priv, u8 reg, u8 *val,
        if (ret == 1) {
                ret = 0;
        } else {
-               dev_warn(&priv->i2c->dev, "%s: i2c wr failed=%d reg=%02x " \
-                               "len=%d\n", KBUILD_MODNAME, ret, reg, len);
+               dev_warn(&priv->i2c->dev,
+                               "%s: i2c wr failed=%d reg=%02x len=%d\n",
+                               KBUILD_MODNAME, ret, reg, len);
                ret = -EREMOTEIO;
        }
        return ret;
@@ -83,8 +84,8 @@ static int tda10071_rd_regs(struct tda10071_priv *priv, u8 reg, u8 *val,
 
        if (len > sizeof(buf)) {
                dev_warn(&priv->i2c->dev,
-                        "%s: i2c wr reg=%04x: len=%d is too big!\n",
-                        KBUILD_MODNAME, reg, len);
+                               "%s: i2c wr reg=%04x: len=%d is too big!\n",
+                               KBUILD_MODNAME, reg, len);
                return -EINVAL;
        }
 
@@ -93,8 +94,9 @@ static int tda10071_rd_regs(struct tda10071_priv *priv, u8 reg, u8 *val,
                memcpy(val, buf, len);
                ret = 0;
        } else {
-               dev_warn(&priv->i2c->dev, "%s: i2c rd failed=%d reg=%02x " \
-                               "len=%d\n", KBUILD_MODNAME, ret, reg, len);
+               dev_warn(&priv->i2c->dev,
+                               "%s: i2c rd failed=%d reg=%02x len=%d\n",
+                               KBUILD_MODNAME, ret, reg, len);
                ret = -EREMOTEIO;
        }
        return ret;
@@ -668,11 +670,11 @@ static int tda10071_set_frontend(struct dvb_frontend *fe)
        u8 mode, rolloff, pilot, inversion, div;
        fe_modulation_t modulation;
 
-       dev_dbg(&priv->i2c->dev, "%s: delivery_system=%d modulation=%d " \
-               "frequency=%d symbol_rate=%d inversion=%d pilot=%d " \
-               "rolloff=%d\n", __func__, c->delivery_system, c->modulation,
-               c->frequency, c->symbol_rate, c->inversion, c->pilot,
-               c->rolloff);
+       dev_dbg(&priv->i2c->dev,
+                       "%s: delivery_system=%d modulation=%d frequency=%d symbol_rate=%d inversion=%d pilot=%d rolloff=%d\n",
+                       __func__, c->delivery_system, c->modulation,
+                       c->frequency, c->symbol_rate, c->inversion, c->pilot,
+                       c->rolloff);
 
        priv->delivery_system = SYS_UNDEFINED;
 
@@ -955,10 +957,8 @@ static int tda10071_init(struct dvb_frontend *fe)
                /* request the firmware, this will block and timeout */
                ret = request_firmware(&fw, fw_file, priv->i2c->dev.parent);
                if (ret) {
-                       dev_err(&priv->i2c->dev, "%s: did not find the " \
-                                       "firmware file. (%s) Please see " \
-                                       "linux/Documentation/dvb/ for more " \
-                                       "details on firmware-problems. (%d)\n",
+                       dev_err(&priv->i2c->dev,
+                                       "%s: did not find the firmware file. (%s) Please see linux/Documentation/dvb/ for more details on firmware-problems. (%d)\n",
                                        KBUILD_MODNAME, fw_file, ret);
                        goto error;
                }
@@ -988,11 +988,12 @@ static int tda10071_init(struct dvb_frontend *fe)
                if (ret)
                        goto error_release_firmware;
 
-               dev_info(&priv->i2c->dev, "%s: found a '%s' in cold state, " \
-                               "will try to load a firmware\n", KBUILD_MODNAME,
-                               tda10071_ops.info.name);
-               dev_info(&priv->i2c->dev, "%s: downloading firmware from " \
-                               "file '%s'\n", KBUILD_MODNAME, fw_file);
+               dev_info(&priv->i2c->dev,
+                               "%s: found a '%s' in cold state, will try to load a firmware\n",
+                               KBUILD_MODNAME, tda10071_ops.info.name);
+               dev_info(&priv->i2c->dev,
+                               "%s: downloading firmware from file '%s'\n",
+                               KBUILD_MODNAME, fw_file);
 
                /* do not download last byte */
                fw_size = fw->size - 1;
@@ -1006,8 +1007,8 @@ static int tda10071_init(struct dvb_frontend *fe)
                        ret = tda10071_wr_regs(priv, 0xfa,
                                (u8 *) &fw->data[fw_size - remaining], len);
                        if (ret) {
-                               dev_err(&priv->i2c->dev, "%s: firmware " \
-                                               "download failed=%d\n",
+                               dev_err(&priv->i2c->dev,
+                                               "%s: firmware download failed=%d\n",
                                                KBUILD_MODNAME, ret);
                                goto error_release_firmware;
                        }
@@ -1071,12 +1072,17 @@ static int tda10071_init(struct dvb_frontend *fe)
                if (ret)
                        goto error;
 
+               if (priv->cfg.tuner_i2c_addr)
+                       tmp = priv->cfg.tuner_i2c_addr;
+               else
+                       tmp = 0x14;
+
                cmd.args[0] = CMD_TUNER_INIT;
                cmd.args[1] = 0x00;
                cmd.args[2] = 0x00;
                cmd.args[3] = 0x00;
                cmd.args[4] = 0x00;
-               cmd.args[5] = (priv->cfg.tuner_i2c_addr) ? priv->cfg.tuner_i2c_addr : 0x14;
+               cmd.args[5] = tmp;
                cmd.args[6] = 0x00;
                cmd.args[7] = 0x03;
                cmd.args[8] = 0x02;
@@ -1216,14 +1222,14 @@ struct dvb_frontend *tda10071_attach(const struct tda10071_config *config,
 
        /* make sure demod i2c address is specified */
        if (!config->demod_i2c_addr) {
-               dev_dbg(&i2c->dev, "%s: invalid demod i2c address!\n", __func__);
+               dev_dbg(&i2c->dev, "%s: invalid demod i2c address\n", __func__);
                ret = -EINVAL;
                goto error;
        }
 
        /* make sure tuner i2c address is specified */
        if (!config->tuner_i2c_addr) {
-               dev_dbg(&i2c->dev, "%s: invalid tuner i2c address!\n", __func__);
+               dev_dbg(&i2c->dev, "%s: invalid tuner i2c address\n", __func__);
                ret = -EINVAL;
                goto error;
        }
index f9542f6..331b5a8 100644 (file)
@@ -79,7 +79,7 @@ extern struct dvb_frontend *tda10071_attach(
 static inline struct dvb_frontend *tda10071_attach(
        const struct tda10071_config *config, struct i2c_adapter *i2c)
 {
-       printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
+       dev_warn(&i2c->dev, "%s: driver disabled by Kconfig\n", __func__);
        return NULL;
 }
 #endif