xref: /linux/drivers/net/ethernet/huawei/hinic3/hinic3_hwdev.c (revision ab93e0dd72c37d378dd936f031ffb83ff2bd87ce)
1*17fcb3dcSFan Gong // SPDX-License-Identifier: GPL-2.0
2*17fcb3dcSFan Gong // Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
3*17fcb3dcSFan Gong 
4*17fcb3dcSFan Gong #include "hinic3_hw_comm.h"
5*17fcb3dcSFan Gong #include "hinic3_hwdev.h"
6*17fcb3dcSFan Gong #include "hinic3_hwif.h"
7*17fcb3dcSFan Gong #include "hinic3_mbox.h"
8*17fcb3dcSFan Gong #include "hinic3_mgmt.h"
9*17fcb3dcSFan Gong 
10*17fcb3dcSFan Gong int hinic3_init_hwdev(struct pci_dev *pdev)
11*17fcb3dcSFan Gong {
12*17fcb3dcSFan Gong 	/* Completed by later submission due to LoC limit. */
13*17fcb3dcSFan Gong 	return -EFAULT;
14*17fcb3dcSFan Gong }
15*17fcb3dcSFan Gong 
16*17fcb3dcSFan Gong void hinic3_free_hwdev(struct hinic3_hwdev *hwdev)
17*17fcb3dcSFan Gong {
18*17fcb3dcSFan Gong 	/* Completed by later submission due to LoC limit. */
19*17fcb3dcSFan Gong }
20*17fcb3dcSFan Gong 
21*17fcb3dcSFan Gong void hinic3_set_api_stop(struct hinic3_hwdev *hwdev)
22*17fcb3dcSFan Gong {
23*17fcb3dcSFan Gong 	/* Completed by later submission due to LoC limit. */
24*17fcb3dcSFan Gong }
25