mmc_fdt_helper: correct typo in DT property name

'no-1-8-v' is a proper name according to the DT binding
documentation
(https://www.kernel.org/doc/Documentation/devicetree/bindings/mmc/mmc-controller.yaml).

Fixes: e63fbd7bb7a25

MFC after: 1 week
Sponsored by: Semihalf
This commit is contained in:
Bartłomiej Grzesik 2021-07-15 17:08:16 +02:00 committed by Marcin Wojtas
parent e5018628e7
commit d8789cd0ae

View File

@ -56,7 +56,7 @@ mmc_fdt_parse_sd_speed(phandle_t node, struct mmc_host *host)
* Parse SD supported modes
* All UHS-I modes requires 1.8V signaling.
*/
if (OF_hasprop(node, "no1-8-v"))
if (OF_hasprop(node, "no-1-8-v"))
no_18v = true;
if (OF_hasprop(node, "cap-sd-highspeed"))
host->caps |= MMC_CAP_HSPEED;