mmc: initialize struct mmc_data at declaration time
authorChris Ball <cjb@laptop.org>
Thu, 14 Apr 2011 03:46:05 +0000 (23:46 -0400)
committerChris Ball <cjb@laptop.org>
Wed, 25 May 2011 01:01:56 +0000 (21:01 -0400)
commita61ad2b49bfce94dfddce828cd9222e4b9e7825b
tree36f93e61adc7c7d7523c78c78c3df1e75fae5e33
parent1278dba167f01bb3c6626d16450d31129d041087
mmc: initialize struct mmc_data at declaration time

Converts from:
struct mmc_data data;
memset(&data, 0, sizeof(struct mmc_data));

to:
struct mmc_data data = {0};

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

Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/card/block.c
drivers/mmc/card/mmc_test.c
drivers/mmc/core/mmc_ops.c
drivers/mmc/core/sd_ops.c
drivers/mmc/core/sdio_ops.c