Commit 2524490c authored by Jose Abreu's avatar Jose Abreu Committed by Mauro Carvalho Chehab

[media] staging: st-cec: Use cec_get_drvdata()

Use helper function to get driver private data from CEC
adapter.
Signed-off-by: default avatarJose Abreu <joabreu@synopsys.com>
Cc: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 0b0b97dc
...@@ -133,7 +133,7 @@ struct stih_cec { ...@@ -133,7 +133,7 @@ struct stih_cec {
static int stih_cec_adap_enable(struct cec_adapter *adap, bool enable) static int stih_cec_adap_enable(struct cec_adapter *adap, bool enable)
{ {
struct stih_cec *cec = adap->priv; struct stih_cec *cec = cec_get_drvdata(adap);
if (enable) { if (enable) {
/* The doc says (input TCLK_PERIOD * CEC_CLK_DIV) = 0.1ms */ /* The doc says (input TCLK_PERIOD * CEC_CLK_DIV) = 0.1ms */
...@@ -189,7 +189,7 @@ static int stih_cec_adap_enable(struct cec_adapter *adap, bool enable) ...@@ -189,7 +189,7 @@ static int stih_cec_adap_enable(struct cec_adapter *adap, bool enable)
static int stih_cec_adap_log_addr(struct cec_adapter *adap, u8 logical_addr) static int stih_cec_adap_log_addr(struct cec_adapter *adap, u8 logical_addr)
{ {
struct stih_cec *cec = adap->priv; struct stih_cec *cec = cec_get_drvdata(adap);
u32 reg = readl(cec->regs + CEC_ADDR_TABLE); u32 reg = readl(cec->regs + CEC_ADDR_TABLE);
reg |= 1 << logical_addr; reg |= 1 << logical_addr;
...@@ -205,7 +205,7 @@ static int stih_cec_adap_log_addr(struct cec_adapter *adap, u8 logical_addr) ...@@ -205,7 +205,7 @@ static int stih_cec_adap_log_addr(struct cec_adapter *adap, u8 logical_addr)
static int stih_cec_adap_transmit(struct cec_adapter *adap, u8 attempts, static int stih_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
u32 signal_free_time, struct cec_msg *msg) u32 signal_free_time, struct cec_msg *msg)
{ {
struct stih_cec *cec = adap->priv; struct stih_cec *cec = cec_get_drvdata(adap);
int i; int i;
/* Copy message into registers */ /* Copy message into registers */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment