From 3d4eb334ecdfec467ecbb7fbd826c3cb397a8ac3 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Fri, 16 Dec 2016 10:01:45 +0100 Subject: fpga: zynqmp: Remove empty functions Xilinx core files will take care about it. There is no need to have these functions because they do nothing. Signed-off-by: Michal Simek --- drivers/fpga/zynqpl.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/drivers/fpga/zynqpl.c b/drivers/fpga/zynqpl.c index ef889ea..2ff716c 100644 --- a/drivers/fpga/zynqpl.c +++ b/drivers/fpga/zynqpl.c @@ -38,11 +38,6 @@ #define CONFIG_SYS_FPGA_PROG_TIME (CONFIG_SYS_HZ * 4) /* 4 s */ #endif -static int zynq_info(xilinx_desc *desc) -{ - return FPGA_SUCCESS; -} - #define DUMMY_WORD 0xffffffff /* Xilinx binary format header */ @@ -481,16 +476,9 @@ static int zynq_loadfs(xilinx_desc *desc, const void *buf, size_t bsize, } #endif -static int zynq_dump(xilinx_desc *desc, const void *buf, size_t bsize) -{ - return FPGA_FAIL; -} - struct xilinx_fpga_op zynq_op = { .load = zynq_load, #if defined(CONFIG_CMD_FPGA_LOADFS) .loadfs = zynq_loadfs, #endif - .dump = zynq_dump, - .info = zynq_info, }; -- cgit v1.1