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 #include <feature.h>
11 
12 #include "vops.h"
13 
brcmf_bca_feat_attach(struct brcmf_if * ifp)14 static void brcmf_bca_feat_attach(struct brcmf_if *ifp)
15 {
16 	/* SAE support not confirmed so disabling for now */
17 	ifp->drvr->feat_flags &= ~BIT(BRCMF_FEAT_SAE);
18 }
19 
20 const struct brcmf_fwvid_ops brcmf_bca_ops = {
21 	.feat_attach = brcmf_bca_feat_attach,
22 };
23