As we'll need to retrieve cached registers, make this
function explicit.

Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com>
---
 drivers/media/tuners/r820t.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/drivers/media/tuners/r820t.c b/drivers/media/tuners/r820t.c
index d5686e8..ef100ab 100644
--- a/drivers/media/tuners/r820t.c
+++ b/drivers/media/tuners/r820t.c
@@ -402,15 +402,25 @@ static int r820t_write_reg(struct r820t_priv *priv, u8 
reg, u8 val)
        return r820t_write(priv, reg, &val, 1);
 }
 
-static int r820t_write_reg_mask(struct r820t_priv *priv, u8 reg, u8 val,
-                               u8 bit_mask)
+static int r820t_read_cache_reg(struct r820t_priv *priv, int reg)
 {
-       int r = reg - REG_SHADOW_START;
+       reg -= REG_SHADOW_START;
 
-       if (r >= 0 && r < NUM_REGS)
-               val = (priv->regs[r] & ~bit_mask) | (val & bit_mask);
+       if (reg >= 0 && reg < NUM_REGS)
+               return priv->regs[reg];
        else
                return -EINVAL;
+}
+
+static int r820t_write_reg_mask(struct r820t_priv *priv, u8 reg, u8 val,
+                               u8 bit_mask)
+{
+       int rc = r820t_read_cache_reg(priv, reg);
+
+       if (rc < 0)
+               return rc;
+
+       val = (rc & ~bit_mask) | (val & bit_mask);
 
        return r820t_write(priv, reg, &val, 1);
 }
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to