mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
PCI: rcar: Remove DRV_NAME macro
The DRV_NAME macro is only used once, so there's no real advantage to having the macro at all. Remove it and use the "rcar-pcie" name directly in the struct platform_driver. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Acked-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
parent
d0206f2121
commit
3ff8e4ac3a
@ -31,8 +31,6 @@
|
|||||||
#include <linux/pm_runtime.h>
|
#include <linux/pm_runtime.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
|
|
||||||
#define DRV_NAME "rcar-pcie"
|
|
||||||
|
|
||||||
#define PCIECAR 0x000010
|
#define PCIECAR 0x000010
|
||||||
#define PCIECCTLR 0x000018
|
#define PCIECCTLR 0x000018
|
||||||
#define CONFIG_SEND_ENABLE (1 << 31)
|
#define CONFIG_SEND_ENABLE (1 << 31)
|
||||||
@ -1199,7 +1197,7 @@ err_pm_disable:
|
|||||||
|
|
||||||
static struct platform_driver rcar_pcie_driver = {
|
static struct platform_driver rcar_pcie_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = DRV_NAME,
|
.name = "rcar-pcie",
|
||||||
.of_match_table = rcar_pcie_of_match,
|
.of_match_table = rcar_pcie_of_match,
|
||||||
.suppress_bind_attrs = true,
|
.suppress_bind_attrs = true,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user