|
@@ -67,7 +67,7 @@ static void mmc_prepare_data(struct mmc_host *host, struct mmc_data *data,
|
|
|
bbstate->bounce_buffer, bbstate->user_buffer, data->blocks,
|
|
|
data->blocksize);
|
|
|
|
|
|
- writel((u32)bbstate->bounce_buffer, &host->reg->sysad);
|
|
|
+ writel((u32)(unsigned long)bbstate->bounce_buffer, &host->reg->sysad);
|
|
|
/*
|
|
|
* DMASEL[4:3]
|
|
|
* 00 = Selects SDMA
|
|
@@ -233,8 +233,8 @@ static int mmc_send_cmd_bounced(struct mmc *mmc, struct mmc_cmd *cmd,
|
|
|
if (cmd->resp_type & MMC_RSP_136) {
|
|
|
/* CRC is stripped so we need to do some shifting. */
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
- unsigned int offset =
|
|
|
- (unsigned int)(&host->reg->rspreg3 - i);
|
|
|
+ unsigned long offset =
|
|
|
+ (unsigned long)(&host->reg->rspreg3 - i);
|
|
|
cmd->response[i] = readl(offset) << 8;
|
|
|
|
|
|
if (i != 3) {
|