|
@@ -1,6 +1,8 @@
|
|
|
/*
|
|
|
* Pinctrl data for the NVIDIA Tegra114 pinmux
|
|
|
*
|
|
|
+ * Author: Pritesh Raithatha <praithatha@nvidia.com>
|
|
|
+ *
|
|
|
* Copyright (c) 2012-2013, NVIDIA CORPORATION. All rights reserved.
|
|
|
*
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
@@ -13,7 +15,7 @@
|
|
|
* more details.
|
|
|
*/
|
|
|
|
|
|
-#include <linux/module.h>
|
|
|
+#include <linux/init.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/pinctrl/pinctrl.h>
|
|
@@ -1857,7 +1859,6 @@ static const struct of_device_id tegra114_pinctrl_of_match[] = {
|
|
|
{ .compatible = "nvidia,tegra114-pinmux", },
|
|
|
{ },
|
|
|
};
|
|
|
-MODULE_DEVICE_TABLE(of, tegra114_pinctrl_of_match);
|
|
|
|
|
|
static struct platform_driver tegra114_pinctrl_driver = {
|
|
|
.driver = {
|
|
@@ -1866,8 +1867,4 @@ static struct platform_driver tegra114_pinctrl_driver = {
|
|
|
},
|
|
|
.probe = tegra114_pinctrl_probe,
|
|
|
};
|
|
|
-module_platform_driver(tegra114_pinctrl_driver);
|
|
|
-
|
|
|
-MODULE_AUTHOR("Pritesh Raithatha <praithatha@nvidia.com>");
|
|
|
-MODULE_DESCRIPTION("NVIDIA Tegra114 pinctrl driver");
|
|
|
-MODULE_LICENSE("GPL v2");
|
|
|
+builtin_platform_driver(tegra114_pinctrl_driver);
|