summaryrefslogtreecommitdiff
path: root/drivers/fpga/xilinx.c
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2014-03-13 11:28:42 +0100
committerMichal Simek <michal.simek@xilinx.com>2014-05-13 09:12:52 +0200
commit2a6e3869f25093cd4032a3cd64ee455afbd668bf (patch)
treedf4181afcf084d53de37956577357dcfecc546e4 /drivers/fpga/xilinx.c
parentb625b9aef383be4366670e8d22b13d48ef8aa870 (diff)
downloadu-boot-imx-2a6e3869f25093cd4032a3cd64ee455afbd668bf.zip
u-boot-imx-2a6e3869f25093cd4032a3cd64ee455afbd668bf.tar.gz
u-boot-imx-2a6e3869f25093cd4032a3cd64ee455afbd668bf.tar.bz2
fpga: spartan3: Avoid CamelCase
No functional changes. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'drivers/fpga/xilinx.c')
-rw-r--r--drivers/fpga/xilinx.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/fpga/xilinx.c b/drivers/fpga/xilinx.c
index 47bbf39..7d93d64 100644
--- a/drivers/fpga/xilinx.c
+++ b/drivers/fpga/xilinx.c
@@ -159,11 +159,11 @@ int xilinx_load(Xilinx_desc *desc, const void *buf, size_t bsize)
__FUNCTION__);
#endif
break;
- case Xilinx_Spartan3:
+ case xilinx_spartan3:
#if defined(CONFIG_FPGA_SPARTAN3)
PRINTF ("%s: Launching the Spartan-III Loader...\n",
__FUNCTION__);
- ret_val = Spartan3_load (desc, buf, bsize);
+ ret_val = spartan3_load(desc, buf, bsize);
#else
printf ("%s: No support for Spartan-III devices.\n",
__FUNCTION__);
@@ -216,11 +216,11 @@ int xilinx_dump(Xilinx_desc *desc, const void *buf, size_t bsize)
__FUNCTION__);
#endif
break;
- case Xilinx_Spartan3:
+ case xilinx_spartan3:
#if defined(CONFIG_FPGA_SPARTAN3)
PRINTF ("%s: Launching the Spartan-III Reader...\n",
__FUNCTION__);
- ret_val = Spartan3_dump (desc, buf, bsize);
+ ret_val = spartan3_dump(desc, buf, bsize);
#else
printf ("%s: No support for Spartan-III devices.\n",
__FUNCTION__);
@@ -265,7 +265,7 @@ int xilinx_info (Xilinx_desc * desc)
case xilinx_spartan2:
printf ("Spartan-II\n");
break;
- case Xilinx_Spartan3:
+ case xilinx_spartan3:
printf ("Spartan-III\n");
break;
case Xilinx_Virtex2:
@@ -325,9 +325,9 @@ int xilinx_info (Xilinx_desc * desc)
__FUNCTION__);
#endif
break;
- case Xilinx_Spartan3:
+ case xilinx_spartan3:
#if defined(CONFIG_FPGA_SPARTAN3)
- Spartan3_info (desc);
+ spartan3_info(desc);
#else
/* just in case */
printf ("%s: No support for Spartan-III devices.\n",