diff options
-rw-r--r-- | drivers/mfd/si476x-i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/si476x-i2c.c b/drivers/mfd/si476x-i2c.c index 118c6b13d8cb..f5bc8e4bd4bf 100644 --- a/drivers/mfd/si476x-i2c.c +++ b/drivers/mfd/si476x-i2c.c | |||
@@ -389,7 +389,7 @@ static void si476x_core_drain_rds_fifo(struct work_struct *work) | |||
389 | kfifo_in(&core->rds_fifo, report.rds, | 389 | kfifo_in(&core->rds_fifo, report.rds, |
390 | sizeof(report.rds)); | 390 | sizeof(report.rds)); |
391 | dev_dbg(&core->client->dev, "RDS data:\n %*ph\n", | 391 | dev_dbg(&core->client->dev, "RDS data:\n %*ph\n", |
392 | sizeof(report.rds), report.rds); | 392 | (int)sizeof(report.rds), report.rds); |
393 | } | 393 | } |
394 | dev_dbg(&core->client->dev, "Drrrrained!\n"); | 394 | dev_dbg(&core->client->dev, "Drrrrained!\n"); |
395 | wake_up_interruptible(&core->rds_read_queue); | 395 | wake_up_interruptible(&core->rds_read_queue); |