meth driver renovation
[deliverable/linux.git] / arch / mips / sgi-ip32 / ip32-platform.c
CommitLineData
e9712901
RB
1#include <linux/init.h>
2#include <linux/platform_device.h>
3
4static __init int meth_devinit(void)
5{
6 struct platform_device *pd;
7 int ret;
8
9 pd = platform_device_alloc("meth", -1);
10 if (!pd)
11 return -ENOMEM;
12
13 ret = platform_device_add(pd);
14 if (ret)
15 platform_device_put(pd);
16
17 return ret;
18}
19
20device_initcall(meth_devinit);
This page took 0.025197 seconds and 5 git commands to generate.