Skip to content

Commit

Permalink
Merge master.kernel.org:/home/rmk/linux-2.6-mmc
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Torvalds committed Jan 15, 2006
2 parents 8d5c315 + 51828ab commit 150a631
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/mmc/mmc_block.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,9 +462,10 @@ static int mmc_blk_probe(struct mmc_card *card)
if (err)
goto out;

printk(KERN_INFO "%s: %s %s %luKiB %s\n",
printk(KERN_INFO "%s: %s %s %lluKiB %s\n",
md->disk->disk_name, mmc_card_id(card), mmc_card_name(card),
get_capacity(md->disk) >> 1, md->read_only ? "(ro)" : "");
(unsigned long long)(get_capacity(md->disk) >> 1),
md->read_only ? "(ro)" : "");

mmc_set_drvdata(card, md);
add_disk(md->disk);
Expand Down

0 comments on commit 150a631

Please sign in to comment.