mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 04:26:19 -04:00
Fix missing drivers makefile entries ds1722.c mw_eeprom.c
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
parent
96455bfebc
commit
58b74b05c6
@ -54,7 +54,8 @@ COBJS = 3c589.o 5701rls.o ali512x.o at45.o ata_piix.o atmel_usart.o \
|
|||||||
ks8695eth.o \
|
ks8695eth.o \
|
||||||
pxa_pcmcia.o mpc8xx_pcmcia.o tqm8xx_pcmcia.o \
|
pxa_pcmcia.o mpc8xx_pcmcia.o tqm8xx_pcmcia.o \
|
||||||
rpx_pcmcia.o \
|
rpx_pcmcia.o \
|
||||||
fsl_i2c.o fsl_pci_init.o ati_radeon_fb.o
|
fsl_i2c.o fsl_pci_init.o ati_radeon_fb.o \
|
||||||
|
ds1722.o mw_eeprom.o
|
||||||
|
|
||||||
SRCS := $(COBJS:.o=.c)
|
SRCS := $(COBJS:.o=.c)
|
||||||
OBJS := $(addprefix $(obj),$(COBJS))
|
OBJS := $(addprefix $(obj),$(COBJS))
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
|
||||||
#include <ssi.h>
|
|
||||||
|
|
||||||
#ifdef CONFIG_DS1722
|
#ifdef CONFIG_DS1722
|
||||||
|
|
||||||
|
#include <ssi.h>
|
||||||
|
|
||||||
static void ds1722_select(int dev)
|
static void ds1722_select(int dev)
|
||||||
{
|
{
|
||||||
ssi_set_interface(4096, 0, 0, 0);
|
ssi_set_interface(4096, 0, 0, 0);
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
/* Three-wire (MicroWire) serial eeprom driver (for 93C46 and compatibles) */
|
/* Three-wire (MicroWire) serial eeprom driver (for 93C46 and compatibles) */
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <ssi.h>
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef CONFIG_MW_EEPROM
|
#ifdef CONFIG_MW_EEPROM
|
||||||
|
|
||||||
|
#include <ssi.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Serial EEPROM opcodes, including start bit
|
* Serial EEPROM opcodes, including start bit
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user