Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c6ab573 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mmc: core: Remove unused variable cached_ext_csd"

parents 54b3c862 f7c5a2bb
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -428,7 +428,6 @@ void mmc_remove_card(struct mmc_card *card)
	}

	kfree(card->wr_pack_stats.packing_events);
	kfree(card->cached_ext_csd);

	put_device(&card->dev);
}
+0 −1
Original line number Diff line number Diff line
@@ -722,7 +722,6 @@ static int mmc_read_ext_csd(struct mmc_card *card)
		return err;
	}

	card->cached_ext_csd = ext_csd;
	err = mmc_decode_ext_csd(card, ext_csd);
	kfree(ext_csd);
	return err;
+0 −1
Original line number Diff line number Diff line
@@ -432,7 +432,6 @@ struct mmc_card {
	struct mmc_wr_pack_stats wr_pack_stats; /* packed commands stats*/
	struct notifier_block        reboot_notify;
	enum mmc_pon_type pon_type;
	u8 *cached_ext_csd;
	bool cmdq_init;
	struct mmc_bkops_info bkops;
};