unexport dvb_class and make it static Signed-off-by: Adrian Bunk Signed-off-by: Johannes Stezenbach --- drivers/media/dvb/dvb-core/dvbdev.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: linux-2.6.12-rc4/drivers/media/dvb/dvb-core/dvbdev.c =================================================================== --- linux-2.6.12-rc4.orig/drivers/media/dvb/dvb-core/dvbdev.c 2005-05-08 18:23:20.000000000 +0200 +++ linux-2.6.12-rc4/drivers/media/dvb/dvb-core/dvbdev.c 2005-05-08 20:24:48.000000000 +0200 @@ -56,8 +56,7 @@ static const char * const dnames[] = { #define nums2minor(num,type,id) ((num << 6) | (id << 4) | type) #define MAX_DVB_MINORS (DVB_MAX_ADAPTERS*64) -struct class_simple *dvb_class; -EXPORT_SYMBOL(dvb_class); +static struct class_simple *dvb_class; static struct dvb_device* dvbdev_find_device (int minor) { --