1 // SPDX-License-Identifier: ISC 2 /* 3 * Copyright (c) 2022 Broadcom Corporation 4 */ 5 #include <linux/errno.h> 6 #include <linux/types.h> 7 #include <core.h> 8 #include <bus.h> 9 #include <fwvid.h> 10 11 #include "vops.h" 12 brcmf_cyw_attach(struct brcmf_pub * drvr)13static int brcmf_cyw_attach(struct brcmf_pub *drvr) 14 { 15 pr_err("%s: executing\n", __func__); 16 return 0; 17 } 18 brcmf_cyw_detach(struct brcmf_pub * drvr)19static void brcmf_cyw_detach(struct brcmf_pub *drvr) 20 { 21 pr_err("%s: executing\n", __func__); 22 } 23 24 const struct brcmf_fwvid_ops brcmf_cyw_ops = { 25 .attach = brcmf_cyw_attach, 26 .detach = brcmf_cyw_detach, 27 }; 28