/* * linux/arch/arm/mach-omap2/devices.c * * OMAP2 platform device setup/initialization * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include <linux/gpio.h> #include <linux/kernel.h> #include <linux/init.h> #include <linux/platform_device.h> #include <linux/io.h> #include <linux/clk.h> #include <linux/err.h> #include <linux/slab.h> #include <linux/of.h> #include <linux/pinctrl/machine.h> #include <asm/mach-types.h> #include <asm/mach/map.h> #include <linux/omap-dma.h> #include "iomap.h" #include "omap_hwmod.h" #include "omap_device.h" #include "soc.h" #include "common.h" #include "control.h" #include "display.h" #define L3_MODULES_MAX_LEN 12 #define L3_MODULES 3 /*-------------------------------------------------------------------------*/ #if IS_ENABLED(CONFIG_VIDEO_OMAP2_VOUT) #if IS_ENABLED(CONFIG_FB_OMAP2) static struct resource omap_vout_resource[3 - CONFIG_FB_OMAP2_NUM_FBS] = { }; #else static struct resource omap_vout_resource[2] = { }; #endif static struct platform_device omap_vout_device = { .name = "omap_vout", .num_resources = ARRAY_SIZE(omap_vout_resource), .resource = &omap_vout_resource[0], .id = -1, };
int __init omap_init_vout(void) { return platform_device_register(&omap_vout_device); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Vaibhav Hiremath | 11 | 73.33% | 1 | 50.00% |
Archit Taneja | 4 | 26.67% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Archit Taneja | 7 | 63.64% | 1 | 50.00% |
Vaibhav Hiremath | 4 | 36.36% | 1 | 50.00% |
Total | 11 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Vaibhav Hiremath | 87 | 50.29% | 1 | 4.35% |
Tony Lindgren | 36 | 20.81% | 6 | 26.09% |
Archit Taneja | 12 | 6.94% | 1 | 4.35% |
R Sricharan | 8 | 4.62% | 2 | 8.70% |
Varadarajan, Charulatha | 6 | 3.47% | 2 | 8.70% |
Russell King | 4 | 2.31% | 2 | 8.70% |
Matt Porter | 3 | 1.73% | 1 | 4.35% |
Kevin Hilman | 3 | 1.73% | 1 | 4.35% |
Benoît Cousson | 3 | 1.73% | 1 | 4.35% |
Javier Martinez Canillas | 2 | 1.16% | 1 | 4.35% |
Laurent Pinchart | 2 | 1.16% | 1 | 4.35% |
Will Deacon | 2 | 1.16% | 1 | 4.35% |
Felipe Balbi | 2 | 1.16% | 1 | 4.35% |
Dmitry Kasatkin | 2 | 1.16% | 1 | 4.35% |
Paul Walmsley | 1 | 0.58% | 1 | 4.35% |
Total | 173 | 100.00% | 23 | 100.00% |