diff options
author | Matthias Fuchs <matthias.fuchs@esd-electronics.com> | 2007-12-27 17:12:43 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-01-09 13:35:52 +0100 |
commit | 21d39d598c4e74d4e7761608c79dba2715d40a4c (patch) | |
tree | 678ab7b82fea0b71f1b0fe833605a5d0ed14996e /include/spartan3.h | |
parent | 0133502e39ff89b67c26cb4015e0e7e8d9571184 (diff) |
Add pre and post configuration callbacks for Spartan FPGAs
This patch adds a post configuration callback for Spartan2/3 FPGAs.
pre and post configuration callback are now optional and
not called when the function pointer is set to NULL.
Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
Diffstat (limited to 'include/spartan3.h')
-rw-r--r-- | include/spartan3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/spartan3.h b/include/spartan3.h index 65a3f5a4dbc..529aade6577 100644 --- a/include/spartan3.h +++ b/include/spartan3.h @@ -58,6 +58,7 @@ typedef struct { Xilinx_init_fn init; Xilinx_done_fn done; Xilinx_wr_fn wr; + Xilinx_post_fn post; int relocated; } Xilinx_Spartan3_Slave_Serial_fns; |