mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 10:31:48 +00:00
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;
|
return mask;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(dvb_ca_en50221_init);
|
|
||||||
|
|
||||||
|
|
||||||
static const struct file_operations dvb_ca_fops = {
|
static const struct file_operations dvb_ca_fops = {
|
||||||
@ -1968,8 +1967,7 @@ exit:
|
|||||||
pubca->private = NULL;
|
pubca->private = NULL;
|
||||||
return ret;
|
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);
|
dvb_ca_private_put(ca);
|
||||||
pubca->private = NULL;
|
pubca->private = NULL;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL(dvb_ca_en50221_release);
|
||||||
|
Loading…
Reference in New Issue
Block a user