Commit 934f24a2 authored by Alessandro Rubini's avatar Alessandro Rubini

host: don't build softpll, but fake it failing

This is needed to build ppsi on the host with arch-wrpc, that
I'm using to developer udp on ppsi::wrpc-sw
Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 714f806a
......@@ -6,5 +6,6 @@ obj-$(CONFIG_HOST_PROCESS) += \
host/fake-flash.o \
host/fake-hw.o \
host/ptp.o \
host/spll.o \
host/socket.o
#include "softpll_ng.h"
void spll_very_init(void)
{}
void spll_init(int mode, int ref_channel, int align_pps)
{}
void spll_enable_ptracker(int ref_channel, int enable)
{}
void spll_set_phase_shift(int out_channel, int32_t value_picoseconds)
{}
int spll_shifter_busy(int out_channel)
{ return 1; }
int spll_check_lock(int out_channel)
{ return 0; }
int spll_update(void)
{ return 0; }
int spll_read_ptracker(int ref_channel, int32_t *phase_ps, int *enabled)
{ return 0; }
obj-y += \
obj-$(CONFIG_LM32) += \
softpll/spll_common.o \
softpll/spll_external.o \
softpll/spll_helper.o \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment