Commit 15d37f38 authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] rtl2830: convert to regmap API

Use regmap to cover register access routines.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent fd4cfa8b
...@@ -444,6 +444,7 @@ config DVB_CXD2820R ...@@ -444,6 +444,7 @@ config DVB_CXD2820R
config DVB_RTL2830 config DVB_RTL2830
tristate "Realtek RTL2830 DVB-T" tristate "Realtek RTL2830 DVB-T"
depends on DVB_CORE && I2C && I2C_MUX depends on DVB_CORE && I2C && I2C_MUX
select REGMAP
default m if !MEDIA_SUBDRV_AUTOSELECT default m if !MEDIA_SUBDRV_AUTOSELECT
help help
Say Y when you want to support this frontend. Say Y when you want to support this frontend.
......
This diff is collapsed.
...@@ -23,15 +23,15 @@ ...@@ -23,15 +23,15 @@
#include "rtl2830.h" #include "rtl2830.h"
#include <linux/i2c-mux.h> #include <linux/i2c-mux.h>
#include <linux/math64.h> #include <linux/math64.h>
#include <linux/regmap.h>
struct rtl2830_dev { struct rtl2830_dev {
struct rtl2830_platform_data *pdata; struct rtl2830_platform_data *pdata;
struct i2c_client *client; struct i2c_client *client;
struct regmap *regmap;
struct i2c_adapter *adapter; struct i2c_adapter *adapter;
struct dvb_frontend fe; struct dvb_frontend fe;
bool sleeping; bool sleeping;
struct mutex i2c_mutex;
u8 page; /* active register page */
unsigned long filters; unsigned long filters;
struct delayed_work stat_work; struct delayed_work stat_work;
fe_status_t fe_status; fe_status_t fe_status;
......
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