mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
media: pci: remove unnecessary (void*) conversions
No need cast (void*) to (struct dst_state *), (struct cx18_stream *), (struct saa7164_port *) or (struct budget *). Signed-off-by: Su Hui <suhui@nfschina.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
This commit is contained in:
parent
afa8516c86
commit
17ae813654
@ -534,7 +534,7 @@ static long dst_ca_ioctl(struct file *file, unsigned int cmd, unsigned long ioct
|
||||
|
||||
mutex_lock(&dst_ca_mutex);
|
||||
dvbdev = file->private_data;
|
||||
state = (struct dst_state *)dvbdev->priv;
|
||||
state = dvbdev->priv;
|
||||
p_ca_message = kmalloc(sizeof (struct ca_msg), GFP_KERNEL);
|
||||
p_ca_slot_info = kmalloc(sizeof (struct ca_slot_info), GFP_KERNEL);
|
||||
p_ca_caps = kmalloc(sizeof (struct ca_caps), GFP_KERNEL);
|
||||
|
@ -234,7 +234,7 @@ static int dvb_register(struct cx18_stream *stream);
|
||||
static int cx18_dvb_start_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct cx18_stream *stream = (struct cx18_stream *) demux->priv;
|
||||
struct cx18_stream *stream = demux->priv;
|
||||
struct cx18 *cx;
|
||||
int ret;
|
||||
u32 v;
|
||||
@ -305,7 +305,7 @@ static int cx18_dvb_start_feed(struct dvb_demux_feed *feed)
|
||||
static int cx18_dvb_stop_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct cx18_stream *stream = (struct cx18_stream *)demux->priv;
|
||||
struct cx18_stream *stream = demux->priv;
|
||||
struct cx18 *cx;
|
||||
int ret = -EINVAL;
|
||||
|
||||
|
@ -280,7 +280,7 @@ out:
|
||||
static int saa7164_dvb_start_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct saa7164_port *port = (struct saa7164_port *) demux->priv;
|
||||
struct saa7164_port *port = demux->priv;
|
||||
struct saa7164_dvb *dvb = &port->dvb;
|
||||
struct saa7164_dev *dev = port->dev;
|
||||
int ret = 0;
|
||||
@ -307,7 +307,7 @@ static int saa7164_dvb_start_feed(struct dvb_demux_feed *feed)
|
||||
static int saa7164_dvb_stop_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct saa7164_port *port = (struct saa7164_port *) demux->priv;
|
||||
struct saa7164_port *port = demux->priv;
|
||||
struct saa7164_dvb *dvb = &port->dvb;
|
||||
struct saa7164_dev *dev = port->dev;
|
||||
int ret = 0;
|
||||
|
@ -308,7 +308,7 @@ int ttpci_budget_debiwrite(struct budget *budget, u32 config, int addr,
|
||||
static int budget_start_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct budget *budget = (struct budget *) demux->priv;
|
||||
struct budget *budget = demux->priv;
|
||||
int status = 0;
|
||||
|
||||
dprintk(2, "budget: %p\n", budget);
|
||||
@ -327,7 +327,7 @@ static int budget_start_feed(struct dvb_demux_feed *feed)
|
||||
static int budget_stop_feed(struct dvb_demux_feed *feed)
|
||||
{
|
||||
struct dvb_demux *demux = feed->demux;
|
||||
struct budget *budget = (struct budget *) demux->priv;
|
||||
struct budget *budget = demux->priv;
|
||||
int status = 0;
|
||||
|
||||
dprintk(2, "budget: %p\n", budget);
|
||||
|
Loading…
Reference in New Issue
Block a user