[PATCH] drivers: mmc: check the return value of mmc_send_if_cond() call

2022-10-21 Thread Matt Ranostay
cmd8 to meet 74 clocks requirement in the spec") Signed-off-by: Matt Ranostay --- drivers/mmc/mmc.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index 0b7c0be8cbc..e26a457a74c 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -2862

[PATCH] phy: ti: j721e-wiz: add j784s4-wiz-10g module support

2022-10-05 Thread Matt Ranostay
Add support for j784s4-wiz-10g device which has two core reference clocks (e.g core_ref_clk, core_ref1_clk) which requires an additional mux selection option. Signed-off-by: Matt Ranostay --- drivers/phy/ti/phy-j721e-wiz.c | 75 -- 1 file changed, 72 insertions

[PATCH] regmap: add WARN_ONCE when invalid mask is provided to regmap_field_init()

2022-09-08 Thread Matt Ranostay
: https://lore.kernel.org/all/20220708013125.313892-1-mranos...@ti.com/ Signed-off-by: Matt Ranostay --- drivers/core/regmap.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/core/regmap.c b/drivers/core/regmap.c index 5f98f85cfce..3100a58af2c 100644 --- a/drivers/core/regmap.c +++ b

[PATCH] armv8: mach-k3: correct define checking for AM625/AM642 memory maps

2022-07-13 Thread Matt Ranostay
AM642 defined in the configuration. For the A53 SPL builds on these platform to access the memory mapping which it will need for enabling the mmu/cache it must use #if defined(X) checks and not CONFIG_IS_ENABLED. Cc: Suman Anna Cc: Neha Francis Signed-off-by: Matt Ranostay --- arch/arm/mach-k3/arm64-

[PATCH] phy: ti: j721e-wiz: use OF data for device specific data

2022-07-08 Thread Matt Ranostay
Move device specific data into OF data structure so it is easier to maintain and we can get rid of if statements. Based on: https://lore.kernel.org/linux-phy/20220526064121.27625-1-rog...@kernel.org/T/#u Cc: Roger Quadros Signed-off-by: Matt Ranostay --- drivers/phy/ti/phy-j721e-wiz.c | 88