Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e44f765 authored by Stephen Hemminger's avatar Stephen Hemminger
Browse files

beceem: add module information



Add description and version information to the driver.
Make USB device table exported as alias so device will be
autoloaded. Get rid of useless noise message on boot.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
parent 2d3b07c0
Loading
Loading
Loading
Loading
+11 −14
Original line number Diff line number Diff line
#include "headers.h"

#define DRV_DESCRIPTION "Beceem Communications Inc. WiMAX driver"
#define DRV_VERSION	"5.2.7.3P1"
#define DRV_COPYRIGHT	"Copyright 2010. Beceem Communications Inc"

static INT bcm_notify_event(struct notifier_block *nb, ULONG event, PVOID dev)
{
	struct net_device *ndev = (struct net_device*)dev;
@@ -236,29 +240,22 @@ void bcm_unregister_networkdev(PMINI_ADAPTER Adapter)

static int bcm_init(void)
{
	int result;
   	result = InterfaceInitialize();
	if(result)
	{
 		printk("Initialisation failed for usbbcm");
	}
	else
	{
		printk("Initialised usbbcm");
	}
	return result;
	printk(KERN_INFO "%s, %s\n", DRV_DESCRIPTION, DRV_VERSION);
	printk(KERN_INFO "%s\n", DRV_COPYRIGHT);

	return InterfaceInitialize();
}


static void bcm_exit(void)
{
    printk("%s %s Calling InterfaceExit\n",__FILE__, __FUNCTION__);
	InterfaceExit();
    printk("%s %s InterfaceExit returned\n",__FILE__, __FUNCTION__);
}

module_init(bcm_init);
module_exit(bcm_exit);
MODULE_LICENSE ("GPL");

MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_VERSION(DRV_VERSION);
MODULE_LICENSE ("GPL");
+7 −6
Original line number Diff line number Diff line
@@ -6,8 +6,10 @@ static struct usb_device_id InterfaceUsbtable[] = {
    { USB_DEVICE(BCM_USB_VENDOR_ID_T3, BCM_USB_PRODUCT_ID_T3L) },
    { USB_DEVICE(BCM_USB_VENDOR_ID_ZTE, BCM_USB_PRODUCT_ID_226) },
    { USB_DEVICE(BCM_USB_VENDOR_ID_FOXCONN, BCM_USB_PRODUCT_ID_1901) },

    { }
};
MODULE_DEVICE_TABLE(usb, InterfaceUsbtable);

VOID InterfaceAdapterFree(PS_INTERFACE_ADAPTER psIntfAdapter)
{
@@ -865,4 +867,3 @@ INT InterfaceExit(void)
	usb_deregister(&usbbcm_driver);
	return status;
}
MODULE_LICENSE ("GPL");