diff options
author | Marek Vasut <marex@denx.de> | 2015-07-25 09:33:28 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:07 +0200 |
commit | 2df7b2aadf375fc3d2f336fab8eb41556b997567 (patch) | |
tree | 9040f22fb198c55b6845772aea05a3ff6d445b59 /arch/arm/mach-socfpga/include/mach | |
parent | 93b4abd3a25ba9061f2146ebabd4aae07d74a499 (diff) | |
download | u-boot-imx-2df7b2aadf375fc3d2f336fab8eb41556b997567.zip u-boot-imx-2df7b2aadf375fc3d2f336fab8eb41556b997567.tar.gz u-boot-imx-2df7b2aadf375fc3d2f336fab8eb41556b997567.tar.bz2 |
arm: socfpga: scan: Staticize scan_mgr_io_scan_chain_prg()
This function is never used outside of scan_manager.c , so make it static.
Zap the prototype in scan_manager.h and move the documentation above the
function. Make the documentation kerneldoc compliant.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'arch/arm/mach-socfpga/include/mach')
-rw-r--r-- | arch/arm/mach-socfpga/include/mach/scan_manager.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/scan_manager.h b/arch/arm/mach-socfpga/include/mach/scan_manager.h index 1155fd3..3602ace 100644 --- a/arch/arm/mach-socfpga/include/mach/scan_manager.h +++ b/arch/arm/mach-socfpga/include/mach/scan_manager.h @@ -68,17 +68,6 @@ struct socfpga_scan_manager { #define SCANMGR_STAT_ACTIVE_GET(x) (((x) & 0x80000000) >> 31) #define SCANMGR_STAT_WFIFOCNT_GET(x) (((x) & 0x70000000) >> 28) -/* - * Program HPS IO Scan Chain - * io_scan_chain_id - IO scan chain ID - * io_scan_chain_len_in_bits - IO scan chain length in bits - * iocsr_scan_chain - IO scan chain table - */ -uint32_t scan_mgr_io_scan_chain_prg( - uint32_t io_scan_chain_id, - uint32_t io_scan_chain_len_in_bits, - const uint32_t *iocsr_scan_chain); - extern const uint32_t iocsr_scan_chain0_table[ ((CONFIG_HPS_IOCSR_SCANCHAIN0_LENGTH / 32) + 1)]; extern const uint32_t iocsr_scan_chain1_table[ |