mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 06:30:54 +07:00
mfd: Fix menelaus mmc slot 2 misconfiguration
We are modifying register value instead of return value. This fix is originally done by Carlos Eduardo Aguiar. Original fix is commit bb4e91722e29efe31587d2cc664b6def645aecd9 in git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git Author modified the fix for mainline version of menelaus. Signed-off-by: Jarkko Nikula <jhnikula@gmail.com> Cc: Carlos Eduardo Aguiar <carlos.aguiar@indt.org.br> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
parent
8102bad2c0
commit
214044b44a
@ -356,9 +356,9 @@ int menelaus_set_mmc_slot(int slot, int enable, int power, int cd_en)
|
||||
int b;
|
||||
|
||||
if (enable)
|
||||
ret |= 1 << 1;
|
||||
val |= 1 << 1;
|
||||
else
|
||||
ret &= ~(1 << 1);
|
||||
val &= ~(1 << 1);
|
||||
b = menelaus_read_reg(MENELAUS_MCT_CTRL2);
|
||||
b &= ~0x03;
|
||||
b |= power;
|
||||
|
Loading…
Reference in New Issue
Block a user