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);
|
||
|
}
|