mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
c879a8c39d
Linking a file into two modules can have unintended side-effects
and produces a W=1 warning:
scripts/Makefile.build:236: drivers/mfd/Makefile: rsmu_core.o is added to multiple modules: rsmu-i2c rsmu-spi
Make this one a separate module instead.
Fixes: a1867f85e0
("mfd: Add Renesas Synchronization Management Unit (SMU) support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20240529094856.1869543-1-arnd@kernel.org
Signed-off-by: Lee Jones <lee@kernel.org>
91 lines
1.7 KiB
C
91 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Core driver for Renesas Synchronization Management Unit (SMU) devices.
|
|
*
|
|
* Copyright (C) 2021 Integrated Device Technology, Inc., a Renesas Company.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/mfd/core.h>
|
|
#include <linux/mfd/rsmu.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include "rsmu.h"
|
|
|
|
enum {
|
|
RSMU_PHC = 0,
|
|
RSMU_CDEV = 1,
|
|
RSMU_N_DEVS = 2,
|
|
};
|
|
|
|
static struct mfd_cell rsmu_cm_devs[] = {
|
|
[RSMU_PHC] = {
|
|
.name = "8a3400x-phc",
|
|
},
|
|
[RSMU_CDEV] = {
|
|
.name = "8a3400x-cdev",
|
|
},
|
|
};
|
|
|
|
static struct mfd_cell rsmu_sabre_devs[] = {
|
|
[RSMU_PHC] = {
|
|
.name = "82p33x1x-phc",
|
|
},
|
|
[RSMU_CDEV] = {
|
|
.name = "82p33x1x-cdev",
|
|
},
|
|
};
|
|
|
|
static struct mfd_cell rsmu_sl_devs[] = {
|
|
[RSMU_PHC] = {
|
|
.name = "8v19n85x-phc",
|
|
},
|
|
[RSMU_CDEV] = {
|
|
.name = "8v19n85x-cdev",
|
|
},
|
|
};
|
|
|
|
int rsmu_core_init(struct rsmu_ddata *rsmu)
|
|
{
|
|
struct mfd_cell *cells;
|
|
int ret;
|
|
|
|
switch (rsmu->type) {
|
|
case RSMU_CM:
|
|
cells = rsmu_cm_devs;
|
|
break;
|
|
case RSMU_SABRE:
|
|
cells = rsmu_sabre_devs;
|
|
break;
|
|
case RSMU_SL:
|
|
cells = rsmu_sl_devs;
|
|
break;
|
|
default:
|
|
dev_err(rsmu->dev, "Unsupported RSMU device type: %d\n", rsmu->type);
|
|
return -ENODEV;
|
|
}
|
|
|
|
mutex_init(&rsmu->lock);
|
|
|
|
ret = devm_mfd_add_devices(rsmu->dev, PLATFORM_DEVID_AUTO, cells,
|
|
RSMU_N_DEVS, NULL, 0, NULL);
|
|
if (ret < 0)
|
|
dev_err(rsmu->dev, "Failed to register sub-devices: %d\n", ret);
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rsmu_core_init);
|
|
|
|
void rsmu_core_exit(struct rsmu_ddata *rsmu)
|
|
{
|
|
mutex_destroy(&rsmu->lock);
|
|
}
|
|
EXPORT_SYMBOL_GPL(rsmu_core_exit);
|
|
|
|
MODULE_DESCRIPTION("Renesas SMU core driver");
|
|
MODULE_LICENSE("GPL");
|