Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 94101
b: refs/heads/master
c: b687d2a
h: refs/heads/master
i:
  94099: 8706632
v: v3
  • Loading branch information
Harvey Harrison authored and Linus Torvalds committed Apr 28, 2008
1 parent e7f7189 commit 6b9cc87
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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: 31a16294261a897ab7f59a5c26e4935a851fd410
refs/heads/master: b687d2a8f8d46921ac5e80bf77967688afce68e2
4 changes: 2 additions & 2 deletions trunk/drivers/spi/omap_uwire.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static int wait_uwire_csr_flag(u16 mask, u16 val, int might_not_catch)
if (time_after(jiffies, max_jiffies)) {
printk(KERN_ERR "%s: timeout. reg=%#06x "
"mask=%#06x val=%#06x\n",
__FUNCTION__, w, mask, val);
__func__, w, mask, val);
return -1;
}
c++;
Expand Down Expand Up @@ -437,7 +437,7 @@ static int uwire_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
}
omap_uwire_configure_mode(spi->chip_select, flags);
pr_debug("%s: uwire flags %02x, armxor %lu KHz, SCK %lu KHz\n",
__FUNCTION__, flags,
__func__, flags,
clk_get_rate(uwire->ck) / 1000,
rate / 1000);
status = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/spi/spi_bitbang.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ int spi_bitbang_setup(struct spi_device *spi)
return retval;

dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
__FUNCTION__, spi->mode & (SPI_CPOL | SPI_CPHA),
__func__, spi->mode & (SPI_CPOL | SPI_CPHA),
spi->bits_per_word, 2 * cs->nsecs);

/* NOTE we _need_ to call chipselect() early, ideally with adapter
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/spi/spi_mpc83xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ static int mpc83xx_spi_setup(struct spi_device *spi)
return retval;

dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec\n",
__FUNCTION__, spi->mode & (SPI_CPOL | SPI_CPHA),
__func__, spi->mode & (SPI_CPOL | SPI_CPHA),
spi->bits_per_word, 2 * mpc83xx_spi->nsecs);

/* NOTE we _need_ to call chipselect() early, ideally with adapter
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/spi/spi_s3c24xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ static int s3c24xx_spi_setup(struct spi_device *spi)
}

dev_dbg(&spi->dev, "%s: mode %d, %u bpw, %d hz\n",
__FUNCTION__, spi->mode, spi->bits_per_word,
__func__, spi->mode, spi->bits_per_word,
spi->max_speed_hz);

return 0;
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/spi/xilinx_spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ static int xilinx_spi_setup_transfer(struct spi_device *spi,
hz = (t) ? t->speed_hz : spi->max_speed_hz;
if (bits_per_word != 8) {
dev_err(&spi->dev, "%s, unsupported bits_per_word=%d\n",
__FUNCTION__, bits_per_word);
__func__, bits_per_word);
return -EINVAL;
}

if (hz && xspi->speed_hz > hz) {
dev_err(&spi->dev, "%s, unsupported clock rate %uHz\n",
__FUNCTION__, hz);
__func__, hz);
return -EINVAL;
}

Expand All @@ -181,7 +181,7 @@ static int xilinx_spi_setup(struct spi_device *spi)

if (spi->mode & ~MODEBITS) {
dev_err(&spi->dev, "%s, unsupported mode bits %x\n",
__FUNCTION__, spi->mode & ~MODEBITS);
__func__, spi->mode & ~MODEBITS);
return -EINVAL;
}

Expand All @@ -190,7 +190,7 @@ static int xilinx_spi_setup(struct spi_device *spi)
return retval;

dev_dbg(&spi->dev, "%s, mode %d, %u bits/w, %u nsec/bit\n",
__FUNCTION__, spi->mode & MODEBITS, spi->bits_per_word, 0);
__func__, spi->mode & MODEBITS, spi->bits_per_word, 0);

return 0;
}
Expand Down

0 comments on commit 6b9cc87

Please sign in to comment.