mmc: trivial annotation of 'blocks'
sg_init_one is reading a be32, annotate as such. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
parent
092f82edbe
commit
b7a03210b7
1 changed files with 2 additions and 4 deletions
|
@ -145,7 +145,7 @@ struct mmc_blk_request {
|
||||||
static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
|
static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
u32 blocks;
|
__be32 blocks;
|
||||||
|
|
||||||
struct mmc_request mrq;
|
struct mmc_request mrq;
|
||||||
struct mmc_command cmd;
|
struct mmc_command cmd;
|
||||||
|
@ -204,9 +204,7 @@ static u32 mmc_sd_num_wr_blocks(struct mmc_card *card)
|
||||||
if (cmd.error || data.error)
|
if (cmd.error || data.error)
|
||||||
return (u32)-1;
|
return (u32)-1;
|
||||||
|
|
||||||
blocks = ntohl(blocks);
|
return ntohl(blocks);
|
||||||
|
|
||||||
return blocks;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
|
static int mmc_blk_issue_rq(struct mmc_queue *mq, struct request *req)
|
||||||
|
|
Loading…
Reference in a new issue