Chris Ball 24f5b53ba0 mmc: initialize struct mmc_request at declaration time
Converts from:
	struct mmc_request mrq;
	memset(&mrq, 0, sizeof(struct mmc_request));

to:
	struct mmc_request mrq = {0};

because it's shorter, as performant, and easier to work out whether
initialization has happened.

Signed-off-by: Chris Ball <cjb@laptop.org>
2011-05-24 21:02:01 -04:00
..
2011-01-08 22:48:03 -05:00
2011-01-08 22:48:03 -05:00
2011-03-15 13:48:33 -04:00
2011-05-24 21:01:21 -04:00
2010-08-11 08:59:02 -07:00
2007-09-23 19:45:31 +02:00
2011-03-31 11:26:23 -03:00