mirror of
https://github.com/apache/nuttx.git
synced 2026-08-18 12:08:16 +00:00
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:
parent
1a11479831
commit
be4875ed30
2 changed files with 0 additions and 12 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -359,8 +359,6 @@ int rptun_initialize(FAR struct rptun_dev_s *dev);
|
|||
int rptun_boot(FAR const char *cpuname);
|
||||
int rptun_poweroff(FAR const char *cpuname);
|
||||
int rptun_reset(FAR const char *cpuname, int value);
|
||||
int rptun_panic(FAR const char *cpuname);
|
||||
void rptun_dump_all(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue