File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1126,14 +1126,14 @@ u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
11261126 * support.
11271127 */
11281128 if (ocr & 0x7F ) {
1129- dev_warn (mmc_dev (host ),
1130- "card claims to support voltages below defined range\n" );
1129+ // dev_warn(mmc_dev(host),
1130+ // "card claims to support voltages below defined range\n");
11311131 ocr &= ~0x7F ;
11321132 }
11331133
11341134 ocr &= host -> ocr_avail ;
11351135 if (!ocr ) {
1136- dev_warn (mmc_dev (host ), "no support for card's volts\n" );
1136+ // dev_warn(mmc_dev(host), "no support for card's volts\n");
11371137 // return 0;
11381138 }
11391139
Original file line number Diff line number Diff line change @@ -2360,7 +2360,8 @@ int mmc_attach_mmc(struct mmc_host *host)
23602360 /*
23612361 * Detect and init the card.
23622362 */
2363- err = mmc_init_card (host , rocr , NULL );
2363+ mmc_init_card (host , rocr , NULL );
2364+ //err = mmc_init_card(host, rocr, NULL);
23642365 if (err )
23652366 goto err ;
23662367
You can’t perform that action at this time.
0 commit comments