diff options
author | Masanari Iida <standby24x7@gmail.com> | 2015-02-27 23:52:31 +0900 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2015-03-06 23:05:39 +0100 |
commit | d939be3add4f1410079dad2755d4936cdb70903b (patch) | |
tree | 290a9b79b5ac87b0b2896e47fe0bcb69a8fa21d6 /drivers/iio | |
parent | f42cf8d6a3ec934551ac0f20f4654dccb11fa30d (diff) | |
download | op-kernel-dev-d939be3add4f1410079dad2755d4936cdb70903b.zip op-kernel-dev-d939be3add4f1410079dad2755d4936cdb70903b.tar.gz |
treewide: Fix typo in printk messages
This patch fix spelling typo in printk messages.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/adc/max1027.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/max1027.c b/drivers/iio/adc/max1027.c index 87ee1c7..44bf815 100644 --- a/drivers/iio/adc/max1027.c +++ b/drivers/iio/adc/max1027.c @@ -436,7 +436,7 @@ static int max1027_probe(struct spi_device *spi) indio_dev->num_channels * 2, GFP_KERNEL); if (st->buffer == NULL) { - dev_err(&indio_dev->dev, "Can't allocate bufffer\n"); + dev_err(&indio_dev->dev, "Can't allocate buffer\n"); return -ENOMEM; } |