From: Chris Ball Date: Thu, 14 Apr 2011 03:49:45 +0000 (-0400) Subject: mmc: initialize struct mmc_request at declaration time X-Git-Tag: v3.0-rc1~148^2~46 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24f5b53ba076e983bc64fa48534ca795d7813d51;p=pandora-kernel.git 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 --- Reading git-diff-tree failed