With gcc-4.1.2:
    mmc/core/block.c: In function ‘mmc_blk_issue_discard_rq’:
    mmc/core/block.c:1150: warning: ‘arg’ may be used uninitialized in this function
    mmc/core/block.c:1150: warning: ‘nr’ may be used uninitialized in this function
    mmc/core/block.c:1150: warning: ‘from’ may be used uninitialized in this function
While this is a false positive, it can be avoided easily by jumping over
the checks for "err" that are always false.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
 
        if (!mmc_can_erase(card)) {
                err = -EOPNOTSUPP;
-               goto out;
+               goto fail;
        }
 
        from = blk_rq_pos(req);
                goto retry;
        if (!err)
                mmc_blk_reset_success(md, type);
+fail:
        blk_end_request(req, err, blk_rq_bytes(req));
 
        return err ? 0 : 1;