From: Markus Elfring <[email protected]>
Date: Sun, 17 Sep 2017 09:42:17 +0200

Replace the specification of data structures by variable references
as the parameter for the operator "sizeof" to make the corresponding size
determination a bit safer according to the Linux coding style convention.

Signed-off-by: Markus Elfring <[email protected]>
---
 drivers/media/tuners/tda18212.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/media/tuners/tda18212.c b/drivers/media/tuners/tda18212.c
index 8f89d52cd39c..16a90d75f7d4 100644
--- a/drivers/media/tuners/tda18212.c
+++ b/drivers/media/tuners/tda18212.c
@@ -207,6 +207,6 @@ static int tda18212_probe(struct i2c_client *client,
        }
 
-       memcpy(&dev->cfg, cfg, sizeof(struct tda18212_config));
+       memcpy(&dev->cfg, cfg, sizeof(*cfg));
        dev->client = client;
        dev->regmap = devm_regmap_init_i2c(client, &regmap_config);
        if (IS_ERR(dev->regmap)) {
@@ -244,7 +244,7 @@ static int tda18212_probe(struct i2c_client *client,
 
        fe->tuner_priv = dev;
        memcpy(&fe->ops.tuner_ops, &tda18212_tuner_ops,
-                       sizeof(struct dvb_tuner_ops));
+              sizeof(fe->ops.tuner_ops));
        i2c_set_clientdata(client, dev);
 
        return 0;
@@ -261,8 +261,7 @@ static int tda18212_remove(struct i2c_client *client)
        struct dvb_frontend *fe = dev->cfg.fe;
 
        dev_dbg(&client->dev, "\n");
-
-       memset(&fe->ops.tuner_ops, 0, sizeof(struct dvb_tuner_ops));
+       memset(&fe->ops.tuner_ops, 0, sizeof(fe->ops.tuner_ops));
        fe->tuner_priv = NULL;
        kfree(dev);
 
-- 
2.14.1

Reply via email to