mirror of https://gitee.com/openkylin/linux.git
media: dvb_ca_en50221: Fix again wrong EXPORT_SYMBOL order
Some EXPORT_SYMBOL() on this file don't match the name of functions that precedes them. Signed-off-by: Jasmin Jessich <jasmin@anw.at> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
4ecb4bfc84
commit
82ec19e4df
|
@ -1849,7 +1849,6 @@ static unsigned int dvb_ca_en50221_io_poll(struct file *file, poll_table *wait)
|
|||
|
||||
return mask;
|
||||
}
|
||||
EXPORT_SYMBOL(dvb_ca_en50221_init);
|
||||
|
||||
|
||||
static const struct file_operations dvb_ca_fops = {
|
||||
|
@ -1968,8 +1967,7 @@ int dvb_ca_en50221_init(struct dvb_adapter *dvb_adapter,
|
|||
pubca->private = NULL;
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(dvb_ca_en50221_release);
|
||||
|
||||
EXPORT_SYMBOL(dvb_ca_en50221_init);
|
||||
|
||||
|
||||
/**
|
||||
|
@ -1995,3 +1993,4 @@ void dvb_ca_en50221_release(struct dvb_ca_en50221 *pubca)
|
|||
dvb_ca_private_put(ca);
|
||||
pubca->private = NULL;
|
||||
}
|
||||
EXPORT_SYMBOL(dvb_ca_en50221_release);
|
||||
|
|
Loading…
Reference in New Issue