mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
cdd30ebb1b
Clean up the existing export namespace code along the same lines of
commit 33def8498f
("treewide: Convert macro and uses of __section(foo)
to __section("foo")") and for the same reason, it is not desired for the
namespace argument to be a macro expansion itself.
Scripted using
git grep -l -e MODULE_IMPORT_NS -e EXPORT_SYMBOL_NS | while read file;
do
awk -i inplace '
/^#define EXPORT_SYMBOL_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/^#define MODULE_IMPORT_NS/ {
gsub(/__stringify\(ns\)/, "ns");
print;
next;
}
/MODULE_IMPORT_NS/ {
$0 = gensub(/MODULE_IMPORT_NS\(([^)]*)\)/, "MODULE_IMPORT_NS(\"\\1\")", "g");
}
/EXPORT_SYMBOL_NS/ {
if ($0 ~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+),/) {
if ($0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/ &&
$0 !~ /(EXPORT_SYMBOL_NS[^(]*)\(\)/ &&
$0 !~ /^my/) {
getline line;
gsub(/[[:space:]]*\\$/, "");
gsub(/[[:space:]]/, "", line);
$0 = $0 " " line;
}
$0 = gensub(/(EXPORT_SYMBOL_NS[^(]*)\(([^,]+), ([^)]+)\)/,
"\\1(\\2, \"\\3\")", "g");
}
}
{ print }' $file;
done
Requested-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://mail.google.com/mail/u/2/#inbox/FMfcgzQXKWgMmjdFwwdsfgxzKpVHWPlc
Acked-by: Greg KH <gregkh@linuxfoundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
79 lines
1.8 KiB
C
79 lines
1.8 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Intel Elkhart Lake PSE GPIO driver
|
|
*
|
|
* Copyright (c) 2023 Intel Corporation.
|
|
*
|
|
* Authors: Pandith N <pandith.n@intel.com>
|
|
* Raag Jadav <raag.jadav@intel.com>
|
|
*/
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/err.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pm.h>
|
|
|
|
#include "gpio-tangier.h"
|
|
|
|
/* Each Intel EHL PSE GPIO Controller has 30 GPIO pins */
|
|
#define EHL_PSE_NGPIO 30
|
|
|
|
static int ehl_gpio_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct tng_gpio *priv;
|
|
int irq, ret;
|
|
|
|
irq = platform_get_irq(pdev, 0);
|
|
if (irq < 0)
|
|
return irq;
|
|
|
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
|
if (!priv)
|
|
return -ENOMEM;
|
|
|
|
priv->reg_base = devm_platform_ioremap_resource(pdev, 0);
|
|
if (IS_ERR(priv->reg_base))
|
|
return PTR_ERR(priv->reg_base);
|
|
|
|
priv->dev = dev;
|
|
priv->irq = irq;
|
|
|
|
priv->info.base = -1;
|
|
priv->info.ngpio = EHL_PSE_NGPIO;
|
|
|
|
priv->wake_regs.gwmr = GWMR_EHL;
|
|
priv->wake_regs.gwsr = GWSR_EHL;
|
|
priv->wake_regs.gsir = GSIR_EHL;
|
|
|
|
ret = devm_tng_gpio_probe(dev, priv);
|
|
if (ret)
|
|
return dev_err_probe(dev, ret, "tng_gpio_probe error\n");
|
|
|
|
platform_set_drvdata(pdev, priv);
|
|
return 0;
|
|
}
|
|
|
|
static const struct platform_device_id ehl_gpio_ids[] = {
|
|
{ "gpio-elkhartlake" },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(platform, ehl_gpio_ids);
|
|
|
|
static struct platform_driver ehl_gpio_driver = {
|
|
.driver = {
|
|
.name = "gpio-elkhartlake",
|
|
.pm = pm_sleep_ptr(&tng_gpio_pm_ops),
|
|
},
|
|
.probe = ehl_gpio_probe,
|
|
.id_table = ehl_gpio_ids,
|
|
};
|
|
module_platform_driver(ehl_gpio_driver);
|
|
|
|
MODULE_AUTHOR("Pandith N <pandith.n@intel.com>");
|
|
MODULE_AUTHOR("Raag Jadav <raag.jadav@intel.com>");
|
|
MODULE_DESCRIPTION("Intel Elkhart Lake PSE GPIO driver");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("GPIO_TANGIER");
|