brintos

brintos / linux-shallow public Read only

0
0
Text · 638 B · 90d06cd Raw
29 lines · c
1// SPDX-License-Identifier: ISC2/*3 * Copyright (c) 2022 Broadcom Corporation4 */5#include <linux/module.h>6#include <bus.h>7#include <core.h>8#include <fwvid.h>9 10#include "vops.h"11 12static int __init brcmf_cyw_init(void)13{14	return brcmf_fwvid_register_vendor(BRCMF_FWVENDOR_CYW, THIS_MODULE,15					   &brcmf_cyw_ops);16}17 18static void __exit brcmf_cyw_exit(void)19{20	brcmf_fwvid_unregister_vendor(BRCMF_FWVENDOR_CYW, THIS_MODULE);21}22 23MODULE_DESCRIPTION("Broadcom FullMAC WLAN driver plugin for Cypress/Infineon chipsets");24MODULE_LICENSE("Dual BSD/GPL");25MODULE_IMPORT_NS(BRCMFMAC);26 27module_init(brcmf_cyw_init);28module_exit(brcmf_cyw_exit);29