Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337371
b: refs/heads/master
c: c9a796d
h: refs/heads/master
i:
  337369: 6a3b9ad
  337367: 8aa33b0
v: v3
  • Loading branch information
YAMANE Toshiaki authored and Greg Kroah-Hartman committed Oct 30, 2012
1 parent e41f8df commit f439761
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cade0fe46fde08642674838a0d17389bd1b7ba4b
refs/heads/master: c9a796d6a6b8bbfaf5bd6f4fd9fb1c8e04bf9534
29 changes: 16 additions & 13 deletions trunk/drivers/staging/gdm72xx/gdm_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ static int init_sdio(struct sdiowm_dev *sdev)

tx->sdu_buf = kmalloc(SDU_TX_BUF_SIZE, GFP_KERNEL);
if (tx->sdu_buf == NULL) {
printk(KERN_ERR "Failed to allocate SDU tx buffer.\n");
dev_err(&sdev->func->dev, "Failed to allocate SDU tx buffer.\n");
goto fail;
}

Expand Down Expand Up @@ -186,7 +186,7 @@ static int init_sdio(struct sdiowm_dev *sdev)

rx->rx_buf = kmalloc(RX_BUF_SIZE, GFP_KERNEL);
if (rx->rx_buf == NULL) {
printk(KERN_ERR "Failed to allocate rx buffer.\n");
dev_err(&sdev->func->dev, "Failed to allocate rx buffer.\n");
goto fail;
}

Expand Down Expand Up @@ -246,7 +246,8 @@ static void send_sdio_pkt(struct sdio_func *func, u8 *data, int len)
ret = sdio_memcpy_toio(func, 0, data, n);
if (ret < 0) {
if (ret != -ENOMEDIUM)
printk(KERN_ERR "gdmwms: %s error: ret = %d\n",
dev_err(&func->dev,
"gdmwms: %s error: ret = %d\n",
__func__, ret);
goto end_io;
}
Expand All @@ -259,7 +260,8 @@ static void send_sdio_pkt(struct sdio_func *func, u8 *data, int len)
ret = sdio_memcpy_toio(func, 0, data + n, remain);
if (ret < 0) {
if (ret != -ENOMEDIUM)
printk(KERN_ERR "gdmwms: %s error: ret = %d\n",
dev_err(&func->dev,
"gdmwms: %s error: ret = %d\n",
__func__, ret);
goto end_io;
}
Expand Down Expand Up @@ -522,13 +524,14 @@ static void gdm_sdio_irq(struct sdio_func *func)

ret = sdio_memcpy_fromio(func, hdr, 0x0, TYPE_A_LOOKAHEAD_SIZE);
if (ret) {
printk(KERN_ERR "Cannot read from function %d\n", func->num);
dev_err(&func->dev,
"Cannot read from function %d\n", func->num);
goto done;
}

len = (hdr[2] << 16) | (hdr[1] << 8) | hdr[0];
if (len > (RX_BUF_SIZE - TYPE_A_HEADER_SIZE)) {
printk(KERN_ERR "Too big Type-A size: %d\n", len);
dev_err(&func->dev, "Too big Type-A size: %d\n", len);
goto done;
}

Expand Down Expand Up @@ -562,8 +565,8 @@ static void gdm_sdio_irq(struct sdio_func *func)
n = blocks * func->cur_blksize;
ret = sdio_memcpy_fromio(func, buf, 0x0, n);
if (ret) {
printk(KERN_ERR "Cannot read from function %d\n",
func->num);
dev_err(&func->dev,
"Cannot read from function %d\n", func->num);
goto done;
}
buf += n;
Expand All @@ -573,8 +576,8 @@ static void gdm_sdio_irq(struct sdio_func *func)
if (remain) {
ret = sdio_memcpy_fromio(func, buf, 0x0, remain);
if (ret) {
printk(KERN_ERR "Cannot read from function %d\n",
func->num);
dev_err(&func->dev,
"Cannot read from function %d\n", func->num);
goto done;
}
}
Expand Down Expand Up @@ -637,9 +640,9 @@ static int sdio_wimax_probe(struct sdio_func *func,
struct phy_dev *phy_dev = NULL;
struct sdiowm_dev *sdev = NULL;

printk(KERN_INFO "Found GDM SDIO VID = 0x%04x PID = 0x%04x...\n",
func->vendor, func->device);
printk(KERN_INFO "GCT WiMax driver version %s\n", DRIVER_VERSION);
dev_info(&func->dev, "Found GDM SDIO VID = 0x%04x PID = 0x%04x...\n",
func->vendor, func->device);
dev_info(&func->dev, "GCT WiMax driver version %s\n", DRIVER_VERSION);

sdio_claim_host(func);
sdio_enable_func(func);
Expand Down

0 comments on commit f439761

Please sign in to comment.