rptun ioctl: remove rptun_panic and rptun_dump_all

In the previous patch, we moved rptun_panic and rptun_dump_all in rptun to rpmsg.
In order to ensure CI pass, this two API in rptun is not removed. So we remove rptun_panic and rptun_dump_all in this patch.

Signed-off-by: wangyongrong <wangyongrong@xiaomi.com>
This commit is contained in:
wangyongrong
2024-01-16 15:01:35 +08:00
committed by Xiang Xiao
parent 1a11479831
commit be4875ed30
2 changed files with 0 additions and 12 deletions
-10
View File
@@ -1053,13 +1053,3 @@ int rptun_reset(FAR const char *cpuname, int value)
{
return rpmsg_ioctl(cpuname, RPTUNIOC_RESET, value);
}
int rptun_panic(FAR const char *cpuname)
{
return rpmsg_ioctl(cpuname, RPMSGIOC_PANIC, 0);
}
void rptun_dump_all(void)
{
rpmsg_ioctl(NULL, RPMSGIOC_DUMP, 0);
}