2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2025-01-16 17:43:56 +08:00

wl18xx: add empty operations struct

We don't have any chip-specific operations yet, but now wlcore has
defined an operations structure and requires the pointer to be set.

Signed-off-by: Luciano Coelho <coelho@ti.com>
Signed-off-by: Arik Nemtsov <arik@wizery.com>
This commit is contained in:
Luciano Coelho 2012-05-10 12:13:08 +03:00
parent 197c62832b
commit 554c36b737

View File

@ -25,6 +25,9 @@
#include "../wlcore/wlcore.h"
#include "../wlcore/debug.h"
static struct wlcore_ops wl18xx_ops = {
};
int __devinit wl18xx_probe(struct platform_device *pdev)
{
struct wl1271 *wl;
@ -37,6 +40,7 @@ int __devinit wl18xx_probe(struct platform_device *pdev)
}
wl = hw->priv;
wl->ops = &wl18xx_ops;
return wlcore_probe(wl, pdev);
}