caab277b1d
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 503 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Enrico Weigelt <info@metux.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190602204653.811534538@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
56 lines
1.2 KiB
C
56 lines
1.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2009 Nokia Corporation
|
|
* Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
|
|
*
|
|
* Some code and ideas taken from drivers/video/omap/ driver
|
|
* by Imre Deak.
|
|
*/
|
|
|
|
#define DSS_SUBSYS_NAME "CORE"
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include "omapdss.h"
|
|
#include "dss.h"
|
|
|
|
/* INIT */
|
|
static struct platform_driver * const omap_dss_drivers[] = {
|
|
&omap_dsshw_driver,
|
|
&omap_dispchw_driver,
|
|
#ifdef CONFIG_OMAP2_DSS_DSI
|
|
&omap_dsihw_driver,
|
|
#endif
|
|
#ifdef CONFIG_OMAP2_DSS_VENC
|
|
&omap_venchw_driver,
|
|
#endif
|
|
#ifdef CONFIG_OMAP4_DSS_HDMI
|
|
&omapdss_hdmi4hw_driver,
|
|
#endif
|
|
#ifdef CONFIG_OMAP5_DSS_HDMI
|
|
&omapdss_hdmi5hw_driver,
|
|
#endif
|
|
};
|
|
|
|
static int __init omap_dss_init(void)
|
|
{
|
|
return platform_register_drivers(omap_dss_drivers,
|
|
ARRAY_SIZE(omap_dss_drivers));
|
|
}
|
|
|
|
static void __exit omap_dss_exit(void)
|
|
{
|
|
platform_unregister_drivers(omap_dss_drivers,
|
|
ARRAY_SIZE(omap_dss_drivers));
|
|
}
|
|
|
|
module_init(omap_dss_init);
|
|
module_exit(omap_dss_exit);
|
|
|
|
MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
|
|
MODULE_DESCRIPTION("OMAP2/3 Display Subsystem");
|
|
MODULE_LICENSE("GPL v2");
|
|
|