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 
13 static int brcmf_bca_attach(struct brcmf_pub *drvr)
14 {
15 	pr_err("%s: executing\n", __func__);
16 	return 0;
17 }
18 
19 static void brcmf_bca_detach(struct brcmf_pub *drvr)
20 {
21 	pr_err("%s: executing\n", __func__);
22 }
23 
24 const struct brcmf_fwvid_ops brcmf_bca_ops = {
25 	.attach = brcmf_bca_attach,
26 	.detach = brcmf_bca_detach,
27 };
28