summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/spi/spi.c')
-rw-r--r--drivers/spi/spi.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
new file mode 100644
index 0000000000..765e34d5e2
--- /dev/null
+++ b/drivers/spi/spi.c
@@ -0,0 +1,14 @@
+#include <common.h>
+#include <spi/spi.h>
+
+int spi_register_boardinfo(struct spi_board_info *info, int num)
+{
+ printf("%s\n", __FUNCTION__);
+ return 0;
+}
+
+int spi_register_master(struct spi_master *master)
+{
+ printf("%s\n", __FUNCTION__);
+ return 0;
+}