18 lines
450 B
C
18 lines
450 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef AC71_PDEV_H
|
|
#define AC71_PDEV_H
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
/* ========================================================================== */
|
|
|
|
extern struct platform_device *ac71_platform_dev;
|
|
|
|
/* ========================================================================== */
|
|
|
|
int __init ac71_pdev_setup(void);
|
|
void ac71_pdev_cleanup(void);
|
|
|
|
#endif /* AC71_PDEV_H */
|