summaryrefslogtreecommitdiff
path: root/drivers/spi
diff options
context:
space:
mode:
authorRasmus Villemoes <rasmus.villemoes@prevas.dk>2020-04-20 17:13:41 +0300
committerTom Rini <trini@konsulko.com>2020-04-24 23:40:09 +0300
commitcffedec2e8f7f11fbe31f4706a222d279cf19c1d (patch)
tree8f46669e0ab173d614e59aa702a648ba73662d57 /drivers/spi
parent077e72c6e6266a215cdbb8bfb07d791cb9c070ec (diff)
downloadu-boot-cffedec2e8f7f11fbe31f4706a222d279cf19c1d.tar.xz
spi: mpc8xxx_spi: fix missing dev_err definition
The build currently fails with drivers/spi/mpc8xxx_spi.c:64:3: warning: implicit declaration of function ‘dev_err’ [-Wimplicit-function-declaration] ... drivers/spi/built-in.o: In function `mpc8xxx_spi_set_speed': drivers/spi/mpc8xxx_spi.c:227: undefined reference to `dev_err' Fixes: 4856cc7a97 (mpc8xxx_spi: implement real ->set_speed) Fixes: 1a7b462dee (mpc8xxx_spi: put max_cs to use) Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
Diffstat (limited to 'drivers/spi')
-rw-r--r--drivers/spi/mpc8xxx_spi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/mpc8xxx_spi.c b/drivers/spi/mpc8xxx_spi.c
index 1bde31ad34..e48debb045 100644
--- a/drivers/spi/mpc8xxx_spi.c
+++ b/drivers/spi/mpc8xxx_spi.c
@@ -12,6 +12,7 @@
#include <spi.h>
#include <asm/mpc8xxx_spi.h>
#include <asm-generic/gpio.h>
+#include <dm/device_compat.h>
enum {
SPI_EV_NE = BIT(31 - 22), /* Receiver Not Empty */