#ifndef _EVDI_PLATFORM_DEV_H_
#define _EVDI_PLATFORM_DEV_H_
#include <linux/types.h>
struct platform_device_info;
struct platform_device;
struct drm_driver;
struct device;
struct platform_device *evdi_platform_dev_create(struct platform_device_info *info);
void evdi_platform_dev_destroy(struct platform_device *dev);
int evdi_platform_device_probe(struct platform_device *pdev);
int evdi_platform_device_remove(struct platform_device *pdev);
bool evdi_platform_device_is_free(struct platform_device *pdev);
void evdi_platform_device_link(struct platform_device *pdev,
struct device *parent);
void evdi_platform_device_unlink_if_linked_with(struct platform_device *pdev,
struct device *parent);
#endif