diff options
author | Matthias Brugger <matthias.bgg@gmail.com> | 2017-12-01 11:47:22 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-12-04 12:35:29 -0800 |
commit | 2467c0451ce5574738e223b93e3253c9a7015be1 (patch) | |
tree | b1961c73a28ebcbabfe1cb40363b0806acb83df0 /drivers/ata/ahci_mtk.c | |
parent | ce179cbdedf2f54306177e591664be7b18cf386a (diff) | |
download | linux-2467c0451ce5574738e223b93e3253c9a7015be1.tar.bz2 |
ahci: mtk: Change driver name to ahci-mtk
The driver name "ahci" is already used by the ahci platform driver.
This leads to the following error:
Error: Driver 'ahci' is already registered, aborting...
Change the name to ahci-mtk to fix this.
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/ahci_mtk.c')
-rw-r--r-- | drivers/ata/ahci_mtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/ahci_mtk.c b/drivers/ata/ahci_mtk.c index 489452a64303..0ae6971c2a4c 100644 --- a/drivers/ata/ahci_mtk.c +++ b/drivers/ata/ahci_mtk.c @@ -25,7 +25,7 @@ #include <linux/reset.h> #include "ahci.h" -#define DRV_NAME "ahci" +#define DRV_NAME "ahci-mtk" #define SYS_CFG 0x14 #define SYS_CFG_SATA_MSK GENMASK(31, 30) |