// SPDX-License-Identifier: ISC #include <linux/kernel.h> #include <linux/module.h> #include <linux/platform_device.h> #include "mt7603.h" static int mt76_wmac_probe(struct platform_device *pdev) { … } static void mt76_wmac_remove(struct platform_device *pdev) { … } static const struct of_device_id of_wmac_match[] = …; MODULE_DEVICE_TABLE(of, of_wmac_match); MODULE_FIRMWARE(…); MODULE_FIRMWARE(…); struct platform_driver mt76_wmac_driver = …;