Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: lp87565: Add LP87524-Q1 variant

Add support for the LP87524B/J/P-Q1 Four 4-MHz Buck Converter. This is a
variant of the LP87565 having 4 single-phase outputs and up to 10 A of
total output current.

Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

authored by

Luca Ceresoli and committed by
Lee Jones
4b6ec08f f9c6785c

+5
+4
drivers/mfd/lp87565.c
··· 27 27 static const struct of_device_id of_lp87565_match_table[] = { 28 28 { .compatible = "ti,lp87565", }, 29 29 { 30 + .compatible = "ti,lp87524-q1", 31 + .data = (void *)LP87565_DEVICE_TYPE_LP87524_Q1, 32 + }, 33 + { 30 34 .compatible = "ti,lp87565-q1", 31 35 .data = (void *)LP87565_DEVICE_TYPE_LP87565_Q1, 32 36 },
+1
include/linux/mfd/lp87565.h
··· 14 14 15 15 enum lp87565_device_type { 16 16 LP87565_DEVICE_TYPE_UNKNOWN = 0, 17 + LP87565_DEVICE_TYPE_LP87524_Q1, 17 18 LP87565_DEVICE_TYPE_LP87561_Q1, 18 19 LP87565_DEVICE_TYPE_LP87565_Q1, 19 20 };