diff options
Diffstat (limited to 'drivers/fpga/xilinx.c')
| -rw-r--r-- | drivers/fpga/xilinx.c | 42 | 
1 files changed, 0 insertions, 42 deletions
| diff --git a/drivers/fpga/xilinx.c b/drivers/fpga/xilinx.c index 7b5e8c5bb..08dfdecde 100644 --- a/drivers/fpga/xilinx.c +++ b/drivers/fpga/xilinx.c @@ -238,48 +238,6 @@ int xilinx_info (Xilinx_desc * desc)  	return ret_val;  } -int xilinx_reloc (Xilinx_desc * desc, ulong reloc_offset) -{ -	int ret_val = FPGA_FAIL;	/* assume a failure */ - -	if (!xilinx_validate (desc, (char *)__FUNCTION__)) { -		printf ("%s: Invalid device descriptor\n", __FUNCTION__); -	} else -		switch (desc->family) { -		case Xilinx_Spartan2: -#if defined(CONFIG_FPGA_SPARTAN2) -			ret_val = Spartan2_reloc (desc, reloc_offset); -#else -			printf ("%s: No support for Spartan-II devices.\n", -					__FUNCTION__); -#endif -			break; -		case Xilinx_Spartan3: -#if defined(CONFIG_FPGA_SPARTAN3) -			ret_val = Spartan3_reloc (desc, reloc_offset); -#else -			printf ("%s: No support for Spartan-III devices.\n", -					__FUNCTION__); -#endif -			break; -		case Xilinx_Virtex2: -#if defined(CONFIG_FPGA_VIRTEX2) -			ret_val = Virtex2_reloc (desc, reloc_offset); -#else -			printf ("%s: No support for Virtex-II devices.\n", -					__FUNCTION__); -#endif -			break; -			/* Add new family types here */ -		default: -			printf ("%s: Unsupported family type, %d\n", -					__FUNCTION__, desc->family); -		} - -	return ret_val; -} - -  /* ------------------------------------------------------------------------- */  static int xilinx_validate (Xilinx_desc * desc, char *fn) |