blob: 4db86ebceefb59485827f06f2f93ae4dea0a9291 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <linux/init.h>
#include <linux/module.h>
#include <linux/platform_device.h>
struct vain_plat_info {
void __iomem *base;
struct platform_device *pdev;
spinlock_t lock;
};
|