mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

Clean up the existing export namespace code along the same lines of commit 33def8498fdd ("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>
55 lines
1.4 KiB
C
55 lines
1.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
// PCI interface driver for Loongson SPI Support
|
|
// Copyright (C) 2023 Loongson Technology Corporation Limited
|
|
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/pci.h>
|
|
|
|
#include "spi-loongson.h"
|
|
|
|
static int loongson_spi_pci_register(struct pci_dev *pdev,
|
|
const struct pci_device_id *ent)
|
|
{
|
|
int ret;
|
|
void __iomem *reg_base;
|
|
struct device *dev = &pdev->dev;
|
|
int pci_bar = 0;
|
|
|
|
ret = pcim_enable_device(pdev);
|
|
if (ret < 0)
|
|
return dev_err_probe(dev, ret, "cannot enable pci device\n");
|
|
|
|
reg_base = pcim_iomap_region(pdev, pci_bar, pci_name(pdev));
|
|
ret = PTR_ERR_OR_ZERO(reg_base);
|
|
if (ret)
|
|
return dev_err_probe(dev, ret, "failed to request and remap memory\n");
|
|
|
|
ret = loongson_spi_init_controller(dev, reg_base);
|
|
if (ret)
|
|
return dev_err_probe(dev, ret, "failed to initialize controller\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct pci_device_id loongson_spi_devices[] = {
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_LOONGSON, 0x7a0b) },
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_LOONGSON, 0x7a1b) },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(pci, loongson_spi_devices);
|
|
|
|
static struct pci_driver loongson_spi_pci_driver = {
|
|
.name = "loongson-spi-pci",
|
|
.id_table = loongson_spi_devices,
|
|
.probe = loongson_spi_pci_register,
|
|
.driver = {
|
|
.bus = &pci_bus_type,
|
|
.pm = &loongson_spi_dev_pm_ops,
|
|
},
|
|
};
|
|
module_pci_driver(loongson_spi_pci_driver);
|
|
|
|
MODULE_DESCRIPTION("Loongson spi pci driver");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_IMPORT_NS("SPI_LOONGSON_CORE");
|