summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2025-06-21 21:30:52 +0300
committerLee Jones <lee@kernel.org>2025-07-24 13:27:09 +0300
commit83f9afe4689d96279d9ade6c1cce36fa86e8ac63 (patch)
tree97d3da8b7614cb8fca6c6037ada7c98a3bae7e66 /include/linux
parentea39dd2638ff6920c342313db98dbc152e815ecd (diff)
downloadlinux-83f9afe4689d96279d9ade6c1cce36fa86e8ac63.tar.xz
mfd: tps65219: Remove another unused field from 'struct tps65219'
The 'chip_id' field from 'struct tps65219' is unused. Remove it. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/f20443e6e13b0b101648a41010a19ee56589fa0b.1750530460.git.christophe.jaillet@wanadoo.fr Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mfd/tps65219.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/mfd/tps65219.h b/include/linux/mfd/tps65219.h
index 690002932377..55234e771ba7 100644
--- a/include/linux/mfd/tps65219.h
+++ b/include/linux/mfd/tps65219.h
@@ -437,14 +437,12 @@ enum tps65219_irqs {
*
* @dev: MFD device
* @regmap: Regmap for accessing the device registers
- * @chip_id: Chip ID
* @irq_data: Regmap irq data used for the irq chip
*/
struct tps65219 {
struct device *dev;
struct regmap *regmap;
- unsigned int chip_id;
struct regmap_irq_chip_data *irq_data;
};