aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2013-03-26 06:17:42 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-26 07:37:48 -0400
commit80f23305ba43f9eda9596092735bffc283b9ae8d (patch)
treede6d69ee0162c242721004413148f20da8b19968 /drivers/media/dvb-frontends
parent02745f63443c08b9b82ab2d654a0f5fc3699e586 (diff)
[media] Fix undefined reference to `au8522_attach'
au8522_attach is dependent on CONFIG_DVB_AU8522_DTV, not CONFIG_DVB_AU8522. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb-frontends')
-rw-r--r--drivers/media/dvb-frontends/au8522.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/au8522.h b/drivers/media/dvb-frontends/au8522.h
index f2111e0fefda..83fe9a615619 100644
--- a/drivers/media/dvb-frontends/au8522.h
+++ b/drivers/media/dvb-frontends/au8522.h
@@ -61,7 +61,7 @@ struct au8522_config {
61 enum au8522_if_freq qam_if; 61 enum au8522_if_freq qam_if;
62}; 62};
63 63
64#if IS_ENABLED(CONFIG_DVB_AU8522) 64#if IS_ENABLED(CONFIG_DVB_AU8522_DTV)
65extern struct dvb_frontend *au8522_attach(const struct au8522_config *config, 65extern struct dvb_frontend *au8522_attach(const struct au8522_config *config,
66 struct i2c_adapter *i2c); 66 struct i2c_adapter *i2c);
67#else 67#else