Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320083
b: refs/heads/master
c: acc4e82
h: refs/heads/master
i:
  320081: 42e2769
  320079: 5386a34
v: v3
  • Loading branch information
Antti Palosaari authored and Mauro Carvalho Chehab committed Jul 5, 2012
1 parent 1f6d267 commit 78d9090
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 27 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3e16df60bbad0a5447cee55c5def2550714af84
refs/heads/master: acc4e826fc930f25e33477869fbafc0964b44d02
35 changes: 9 additions & 26 deletions trunk/drivers/media/dvb/frontends/a8293.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,6 @@
#include "dvb_frontend.h"
#include "a8293.h"

static int debug;
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "Turn on/off debugging (default:off).");

#define LOG_PREFIX "a8293"

#undef dbg
#define dbg(f, arg...) \
if (debug) \
printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
#undef err
#define err(f, arg...) printk(KERN_ERR LOG_PREFIX": " f "\n" , ## arg)
#undef info
#define info(f, arg...) printk(KERN_INFO LOG_PREFIX": " f "\n" , ## arg)
#undef warn
#define warn(f, arg...) printk(KERN_WARNING LOG_PREFIX": " f "\n" , ## arg)


struct a8293_priv {
struct i2c_adapter *i2c;
const struct a8293_config *cfg;
Expand All @@ -65,7 +47,8 @@ static int a8293_i2c(struct a8293_priv *priv, u8 *val, int len, bool rd)
if (ret == 1) {
ret = 0;
} else {
warn("i2c failed=%d rd=%d", ret, rd);
dev_warn(&priv->i2c->dev, "%s: i2c failed=%d rd=%d\n",
KBUILD_MODNAME, ret, rd);
ret = -EREMOTEIO;
}

Expand All @@ -88,7 +71,8 @@ static int a8293_set_voltage(struct dvb_frontend *fe,
struct a8293_priv *priv = fe->sec_priv;
int ret;

dbg("%s: fe_sec_voltage=%d", __func__, fe_sec_voltage);
dev_dbg(&priv->i2c->dev, "%s: fe_sec_voltage=%d\n", __func__,
fe_sec_voltage);

switch (fe_sec_voltage) {
case SEC_VOLTAGE_OFF:
Expand All @@ -114,14 +98,12 @@ static int a8293_set_voltage(struct dvb_frontend *fe,

return ret;
err:
dbg("%s: failed=%d", __func__, ret);
dev_dbg(&priv->i2c->dev, "%s: failed=%d\n", __func__, ret);
return ret;
}

static void a8293_release_sec(struct dvb_frontend *fe)
{
dbg("%s:", __func__);

a8293_set_voltage(fe, SEC_VOLTAGE_OFF);

kfree(fe->sec_priv);
Expand Down Expand Up @@ -164,16 +146,17 @@ struct dvb_frontend *a8293_attach(struct dvb_frontend *fe,
if (ret)
goto err;

info("Allegro A8293 SEC attached.");

fe->ops.release_sec = a8293_release_sec;

/* override frontend ops */
fe->ops.set_voltage = a8293_set_voltage;

dev_info(&priv->i2c->dev, "%s: Allegro A8293 SEC attached\n",
KBUILD_MODNAME);

return fe;
err:
dbg("%s: failed=%d", __func__, ret);
dev_dbg(&i2c->dev, "%s: failed=%d\n", __func__, ret);
kfree(priv);
return NULL;
}
Expand Down

0 comments on commit 78d9090

Please sign in to comment.