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

Configure Feed

Select the types of activity you want to include in your feed.

mmc: core: Disable SDUC for mmc_test

Planning to ameliorate it in the very near future.

Reviewed-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Avri Altman <avri.altman@wdc.com>
Link: https://lore.kernel.org/r/20241006051148.160278-9-avri.altman@wdc.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>

authored by

Avri Altman and committed by
Ulf Hansson
96f5e902 449f34a3

+6
+6
drivers/mmc/core/mmc_test.c
··· 3241 3241 if (!mmc_card_mmc(card) && !mmc_card_sd(card)) 3242 3242 return -ENODEV; 3243 3243 3244 + if (mmc_card_ult_capacity(card)) { 3245 + pr_info("%s: mmc-test currently UNSUPPORTED for SDUC\n", 3246 + mmc_hostname(card->host)); 3247 + return -EOPNOTSUPP; 3248 + } 3249 + 3244 3250 ret = mmc_test_register_dbgfs_file(card); 3245 3251 if (ret) 3246 3252 return ret;