mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00
14 lines
302 B
C
14 lines
302 B
C
![]() |
// SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
#include <linux/auxiliary_bus.h>
|
||
|
|
||
|
void rust_helper_auxiliary_device_uninit(struct auxiliary_device *adev)
|
||
|
{
|
||
|
return auxiliary_device_uninit(adev);
|
||
|
}
|
||
|
|
||
|
void rust_helper_auxiliary_device_delete(struct auxiliary_device *adev)
|
||
|
{
|
||
|
return auxiliary_device_delete(adev);
|
||
|
}
|