mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
brcmfmac: cleanup module information macros
The output of modinfo shows a bit of strangeness because module information macros are used in multiple source files: license: Dual BSD/GPL description: Broadcom 802.11 wireless LAN fullmac driver. author: Broadcom Corporation firmware: brcm/brcmfmac-sdio.txt firmware: brcm/brcmfmac-sdio.bin firmware: brcm/brcmfmac43236b.bin license: Dual BSD/GPL description: Broadcom 802.11n wireless LAN fullmac usb driver. author: Broadcom Corporation This patch cleans it up. Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
1b255c9253
commit
5cfd6e88da
2 changed files with 1 additions and 6 deletions
|
@ -33,7 +33,6 @@
|
|||
|
||||
MODULE_AUTHOR("Broadcom Corporation");
|
||||
MODULE_DESCRIPTION("Broadcom 802.11 wireless LAN fullmac driver.");
|
||||
MODULE_SUPPORTED_DEVICE("Broadcom 802.11 WLAN fullmac cards");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
|
||||
#define MAX_WAIT_FOR_8021X_TX 50 /* msecs */
|
||||
|
|
|
@ -112,11 +112,6 @@ struct brcmf_usbdev_info {
|
|||
static void brcmf_usb_rx_refill(struct brcmf_usbdev_info *devinfo,
|
||||
struct brcmf_usbreq *req);
|
||||
|
||||
MODULE_AUTHOR("Broadcom Corporation");
|
||||
MODULE_DESCRIPTION("Broadcom 802.11n wireless LAN fullmac usb driver.");
|
||||
MODULE_SUPPORTED_DEVICE("Broadcom 802.11n WLAN fullmac usb cards");
|
||||
MODULE_LICENSE("Dual BSD/GPL");
|
||||
|
||||
static struct brcmf_usbdev *brcmf_usb_get_buspub(struct device *dev)
|
||||
{
|
||||
struct brcmf_bus *bus_if = dev_get_drvdata(dev);
|
||||
|
@ -1485,6 +1480,7 @@ static struct usb_device_id brcmf_usb_devid_table[] = {
|
|||
{ USB_DEVICE(BRCMF_USB_VENDOR_ID_BROADCOM, BRCMF_USB_DEVICE_ID_BCMFW) },
|
||||
{ }
|
||||
};
|
||||
|
||||
MODULE_DEVICE_TABLE(usb, brcmf_usb_devid_table);
|
||||
MODULE_FIRMWARE(BRCMF_USB_43143_FW_NAME);
|
||||
MODULE_FIRMWARE(BRCMF_USB_43236_FW_NAME);
|
||||
|
|
Loading…
Add table
Reference in a new issue