Skip to content
Snippets Groups Projects
Commit 8931ab17 authored by Ben Warren's avatar Ben Warren Committed by Kim Phillips
Browse files

Fix conditional compilation of mpx8xxx_spi driver


This driver should only compile if CONFIG_MPC8XXX_SPI is set

Signed-off-by: default avatarBen Warren <biggerbadderben@gmail.com>
Signed-off-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent 98b74248
No related branches found
No related tags found
No related merge requests found
......@@ -22,11 +22,11 @@
*/
#include <common.h>
#if defined(CONFIG_MPC8XXX_SPI) && defined(CONFIG_HARD_SPI)
#include <spi.h>
#include <asm/mpc8xxx_spi.h>
#ifdef CONFIG_HARD_SPI
#define SPI_EV_NE (0x80000000 >> 22) /* Receiver Not Empty */
#define SPI_EV_NF (0x80000000 >> 23) /* Transmitter Not Full */
......
......@@ -356,6 +356,7 @@
#define CFG_I2C2_OFFSET 0x3100
/* SPI */
#define CONFIG_MPC8XXX_SPI
#define CONFIG_HARD_SPI /* SPI with hardware support */
#undef CONFIG_SOFT_SPI /* SPI bit-banged */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment