mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
spi: xilinx_spi: Trivial fixes in axi qspi driver
Use __func__ instead for function name in debug. Use Linux style u32 instead of uint32_t. Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com> Acked-by: Ashok Reddy Soma <ashok.reddy.soma@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
ce90654d1c
commit
d999a7b7b6
1 changed files with 3 additions and 5 deletions
|
@ -314,8 +314,7 @@ static int xilinx_spi_set_speed(struct udevice *bus, uint speed)
|
|||
|
||||
priv->freq = speed;
|
||||
|
||||
debug("xilinx_spi_set_speed: regs=%p, speed=%d\n", priv->regs,
|
||||
priv->freq);
|
||||
debug("%s: regs=%p, speed=%d\n", __func__, priv->regs, priv->freq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -324,7 +323,7 @@ static int xilinx_spi_set_mode(struct udevice *bus, uint mode)
|
|||
{
|
||||
struct xilinx_spi_priv *priv = dev_get_priv(bus);
|
||||
struct xilinx_spi_regs *regs = priv->regs;
|
||||
uint32_t spicr;
|
||||
u32 spicr;
|
||||
|
||||
spicr = readl(®s->spicr);
|
||||
if (mode & SPI_LSB_FIRST)
|
||||
|
@ -339,8 +338,7 @@ static int xilinx_spi_set_mode(struct udevice *bus, uint mode)
|
|||
writel(spicr, ®s->spicr);
|
||||
priv->mode = mode;
|
||||
|
||||
debug("xilinx_spi_set_mode: regs=%p, mode=%d\n", priv->regs,
|
||||
priv->mode);
|
||||
debug("%s: regs=%p, mode=%d\n", __func__, priv->regs, priv->mode);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue