diff options
author | Tony Prisk <linux@prisktech.co.nz> | 2012-08-03 10:58:22 +0200 |
---|---|---|
committer | Tony Prisk <linux@prisktech.co.nz> | 2012-09-21 09:23:56 +0200 |
commit | e7b995371fe1e29838321fcdc3cfe35bb0d6bfc4 (patch) | |
tree | def3385d58244aa0c4da4098d0d99b92353a3416 /drivers/video/wmt_ge_rops.c | |
parent | serial: vt8500: Add devicetree support for vt8500-serial (diff) | |
download | linux-e7b995371fe1e29838321fcdc3cfe35bb0d6bfc4.tar.xz linux-e7b995371fe1e29838321fcdc3cfe35bb0d6bfc4.zip |
video: vt8500: Add devicetree support for vt8500-fb and wm8505-fb
Update vt8500-fb, wm8505-fb and wmt-ge-rops to support device
tree bindings.
Small change in wm8505-fb.c to support WM8650 framebuffer color
format.
Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
Diffstat (limited to 'drivers/video/wmt_ge_rops.c')
-rw-r--r-- | drivers/video/wmt_ge_rops.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/video/wmt_ge_rops.c b/drivers/video/wmt_ge_rops.c index 55be3865015b..ba025b4c7d09 100644 --- a/drivers/video/wmt_ge_rops.c +++ b/drivers/video/wmt_ge_rops.c @@ -158,12 +158,18 @@ static int __devexit wmt_ge_rops_remove(struct platform_device *pdev) return 0; } +static const struct of_device_id wmt_dt_ids[] = { + { .compatible = "wm,prizm-ge-rops", }, + { /* sentinel */ } +}; + static struct platform_driver wmt_ge_rops_driver = { .probe = wmt_ge_rops_probe, .remove = __devexit_p(wmt_ge_rops_remove), .driver = { .owner = THIS_MODULE, .name = "wmt_ge_rops", + .of_match_table = of_match_ptr(wmt_dt_ids), }, }; @@ -172,4 +178,5 @@ module_platform_driver(wmt_ge_rops_driver); MODULE_AUTHOR("Alexey Charkov <alchark@gmail.com"); MODULE_DESCRIPTION("Accelerators for raster operations using " "WonderMedia Graphics Engine"); -MODULE_LICENSE("GPL"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_dt_ids); |