* Copyright (c) Huawei Technologies Co., Ltd. 2025. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "ka_kernel_def_pub.h"
#include "vmng_kernel_interface.h"
#include "virtmng_public_def.h"
int vmngh_vpc_msg_send(u32 dev_id, u32 fid, enum vmng_vpc_type vpc_type, struct vmng_tx_msg_proc_info *tx_info,
u32 timeout)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_vpc_msg_send);
int vmngh_vpc_register_client(u32 dev_id, u32 fid, const struct vmng_vpc_client *vpc_client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_vpc_register_client);
int vmngh_vpc_unregister_client(u32 dev_id, u32 fid, const struct vmng_vpc_client *vpc_client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_vpc_unregister_client);
int vmngh_register_client(struct vmngh_client *client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_register_client);
int vmngh_unregister_client(struct vmngh_client *client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_unregister_client);
int vmngh_register_vascend_client(struct vmngh_vascend_client *client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_register_vascend_client);
int vmngh_unregister_vascend_client(struct vmngh_vascend_client *client)
{
return 0;
}
KA_EXPORT_SYMBOL(vmngh_unregister_vascend_client);
KA_MODULE_LICENSE("GPL");