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:
Jasmin Jessich 2017-07-15 20:43:14 -04:00 committed by Mauro Carvalho Chehab
parent 4ecb4bfc84
commit 82ec19e4df

View File

@ -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);