From fc53c99de57d80fc3de6d77fde5c9d41ebe43be1 Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Wed, 11 Feb 2009 13:21:46 -0800 Subject: [PATCH] --- yaml --- r: 141319 b: refs/heads/master c: 793bccbd0e5d22903ab4e28a598159a9bf59a0f1 h: refs/heads/master i: 141317: 13e7aaa8bc9e68cb989e5057d27d078c0ea6f8b5 141315: 062a46ef46e676e332138ec8c4d1e571ebde275d 141311: b9f0a2a9a55e27e85fa43af27ba7b2eba7599985 v: v3 --- [refs] | 2 +- trunk/drivers/staging/stlc45xx/stlc45xx.c | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/[refs] b/[refs] index fd572d717315..9bf8066a2b9b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 14c0b3ed4cab5ea79de091e22d42d6677f7cfefa +refs/heads/master: 793bccbd0e5d22903ab4e28a598159a9bf59a0f1 diff --git a/trunk/drivers/staging/stlc45xx/stlc45xx.c b/trunk/drivers/staging/stlc45xx/stlc45xx.c index 1defbb50219e..3eced5520c56 100644 --- a/trunk/drivers/staging/stlc45xx/stlc45xx.c +++ b/trunk/drivers/staging/stlc45xx/stlc45xx.c @@ -450,7 +450,7 @@ static ssize_t stlc45xx_sysfs_store_cal_rssi(struct device *dev, mutex_lock(&stlc->mutex); if (count != RSSI_CAL_ARRAY_LEN) { - stlc45xx_error("invalid cal_rssi length: %d", count); + stlc45xx_error("invalid cal_rssi length: %zu", count); count = 0; goto out_unlock; } @@ -506,7 +506,7 @@ static ssize_t stlc45xx_sysfs_store_cal_channels(struct device *dev, mutex_lock(&stlc->mutex); if (count != CHANNEL_CAL_ARRAY_LEN) { - stlc45xx_error("invalid cal_channels size: %d ", count); + stlc45xx_error("invalid cal_channels size: %zu ", count); count = 0; goto out_unlock; } @@ -715,7 +715,7 @@ static int stlc45xx_txbuffer_find(struct stlc45xx *stlc, size_t len) /* not enough room */ pos = -1; - stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: find %d B: 0x%x", len, pos); + stlc45xx_debug(DEBUG_TXBUFFER, "txbuffer: find %zu B: 0x%x", len, pos); out: return pos; @@ -848,13 +848,13 @@ static int stlc45xx_request_firmware(struct stlc45xx *stlc) } if (fw->size % 4) { - stlc45xx_error("firmware size is not multiple of 32bit: %d", + stlc45xx_error("firmware size is not multiple of 32bit: %zu", fw->size); return -EILSEQ; /* Illegal byte sequence */; } if (fw->size < 1000) { - stlc45xx_error("firmware is too small: %d", fw->size); + stlc45xx_error("firmware is too small: %zu", fw->size); return -EILSEQ; } @@ -1505,7 +1505,7 @@ static int stlc45xx_tx_frame(struct stlc45xx *stlc, u32 address, stlc45xx_debug(DEBUG_FUNC, "%s", __func__); - stlc45xx_debug(DEBUG_TX, "tx frame 0x%p %d B", buf, len); + stlc45xx_debug(DEBUG_TX, "tx frame 0x%p %zu B", buf, len); stlc45xx_dump(DEBUG_TX_CONTENT, buf, len); stlc45xx_wakeup(stlc);