| /rk3399_rockchip-uboot/drivers/sound/ |
| H A D | max98095.c | 147 int error; in max98095_hw_params() local 164 error = max98095_update_bits(M98095_DAI_FORMAT, in max98095_hw_params() 168 error = max98095_update_bits(M98095_DAI_FORMAT, in max98095_hw_params() 184 error |= max98095_update_bits(M98095_DAI_CLKMODE, in max98095_hw_params() 189 error |= max98095_update_bits(M98095_DAI_FILTERS, in max98095_hw_params() 192 error |= max98095_update_bits(M98095_DAI_FILTERS, in max98095_hw_params() 195 if (error < 0) { in max98095_hw_params() 214 int error = 0; in max98095_set_sysclk() local 226 error = max98095_i2c_write(M98095_026_SYS_CLK, 0x10); in max98095_set_sysclk() 228 error = max98095_i2c_write(M98095_026_SYS_CLK, 0x20); in max98095_set_sysclk() [all …]
|
| H A D | sound-i2s.c | 35 int error = 0; in get_sound_i2s_values() local 59 error |= i2s->audio_pll_clk; in get_sound_i2s_values() 63 error |= i2s->samplingrate; in get_sound_i2s_values() 67 error |= i2s->bitspersample; in get_sound_i2s_values() 71 error |= i2s->channels; in get_sound_i2s_values() 75 error |= i2s->rfs; in get_sound_i2s_values() 79 error |= i2s->bfs; in get_sound_i2s_values() 83 error |= i2s->id; in get_sound_i2s_values() 86 if (error == -1) { in get_sound_i2s_values()
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H A D | scf0403_lcd.c | 153 int error = 0; in scf0403_spi_read_rddid() local 158 error = spi_set_wordlen(spi, 9); in scf0403_spi_read_rddid() 159 if (error) in scf0403_spi_read_rddid() 160 return error; in scf0403_spi_read_rddid() 163 error = spi_xfer(spi, 9, &cmd, NULL, SPI_XFER_ONCE); in scf0403_spi_read_rddid() 164 if (error) in scf0403_spi_read_rddid() 165 return error; in scf0403_spi_read_rddid() 172 error = spi_xfer(spi, 9, NULL, &dummy_buf, SPI_XFER_ONCE); in scf0403_spi_read_rddid() 173 if (error) in scf0403_spi_read_rddid() 174 return error; in scf0403_spi_read_rddid() [all …]
|
| /rk3399_rockchip-uboot/drivers/crypto/fsl/ |
| H A D | error.c | 140 const char *error) in report_ccb_status() argument 175 status, error, idx_str, idx, in report_ccb_status() 181 const char *error) in report_jump_status() argument 184 status, error, __func__); in report_jump_status() 188 const char *error) in report_deco_status() argument 213 status, error, idx_str, idx, err_str, err_err_code); in report_deco_status() 217 const char *error) in report_jr_status() argument 220 status, error, __func__); in report_jr_status() 224 const char *error) in report_cond_code_status() argument 227 status, error, __func__); in report_cond_code_status() [all …]
|
| /rk3399_rockchip-uboot/drivers/crypto/rockchip/ |
| H A D | crypto_v2_pka.c | 276 u32 error = CRYPT_OK; in rk_pka_exec_operation() local 299 error = RK_PKA_DIVIDER_IS_NULL_ERROR; in rk_pka_exec_operation() 313 return error; in rk_pka_exec_operation() 321 u32 error; in rk_pka_set_sizes_tab() local 324 error = CRYPT_OK; in rk_pka_set_sizes_tab() 362 return error; in rk_pka_set_sizes_tab() 370 u32 error; in rk_pka_set_map_tab() local 374 error = CRYPT_OK; in rk_pka_set_map_tab() 409 return error; in rk_pka_set_map_tab() 456 u32 error; in rk_pka_init() local [all …]
|
| H A D | crypto_hash_cache.c | 22 goto error; in hash_cache_calc() 50 goto error; in hash_cache_calc() 66 goto error; in hash_cache_calc() 74 error: in hash_cache_calc() 137 goto error; in crypto_hash_update_with_cache() 174 goto error; in crypto_hash_update_with_cache() 184 goto error; in crypto_hash_update_with_cache() 189 error: in crypto_hash_update_with_cache()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | environment.h | 45 # error "Both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE undefined" 59 # error "do not define CONFIG_ENV_IS_EMBEDDED in your board config" 60 # error "it is calculated automatically for you" 73 # error "CONFIG_ENV_OFFSET_REDUND is not supported when CONFIG_ENV_OFFSET_OOB" 74 # error "is set" 80 # error "Need to define CONFIG_ENV_OFFSET when using CONFIG_ENV_IS_IN_NAND" 87 # error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_NAND" 93 # error "Need to define CONFIG_ENV_UBI_PART when using CONFIG_ENV_IS_IN_UBI" 96 # error "Need to define CONFIG_ENV_UBI_VOLUME when using CONFIG_ENV_IS_IN_UBI" 102 # error "Need to define CONFIG_ENV_SIZE when using CONFIG_ENV_IS_IN_UBI" [all …]
|
| /rk3399_rockchip-uboot/test/ |
| H A D | time_ut.c | 82 long error; in test_time_comparison() local 91 error = delta_us - 1000000; in test_time_comparison() 93 __func__, delta_us, error); in test_time_comparison() 94 if (abs(error) > 1000) in test_time_comparison() 102 long error; in test_udelay() local 110 error = delta - 1000; in test_udelay() 112 __func__, delta, error); in test_udelay() 113 if (abs(error) > 100) in test_udelay()
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | ini.c | 132 int error = 0; in ini_parse() local 152 if (!handler(user, section, prev_name, start) && !error) in ini_parse() 153 error = lineno; in ini_parse() 163 } else if (!error) { in ini_parse() 165 error = lineno; in ini_parse() 192 !error) in ini_parse() 193 error = lineno; in ini_parse() 194 } else if (!error) in ini_parse() 196 error = lineno; in ini_parse() 200 return error; in ini_parse()
|
| /rk3399_rockchip-uboot/drivers/power/ |
| H A D | exynos-tmu.c | 186 int error = 0; in get_tmu_fdt_values() local 218 error |= (info->data.ts.min_val == -1); in get_tmu_fdt_values() 221 error |= (info->data.ts.max_val == -1); in get_tmu_fdt_values() 224 error |= (info->data.ts.start_warning == -1); in get_tmu_fdt_values() 227 error |= (info->data.ts.start_tripping == -1); in get_tmu_fdt_values() 230 error |= (info->data.ts.hardware_tripping == -1); in get_tmu_fdt_values() 233 error |= (info->data.efuse_min_value == -1); in get_tmu_fdt_values() 236 error |= (info->data.efuse_value == -1); in get_tmu_fdt_values() 239 error |= (info->data.efuse_max_value == -1); in get_tmu_fdt_values() 242 error |= (info->data.slope == -1); in get_tmu_fdt_values() [all …]
|
| /rk3399_rockchip-uboot/drivers/serial/ |
| H A D | serial_ns16550.c | 24 #error "Invalid console index value." 28 #error "Console port 1 defined but not configured." 30 #error "Console port 2 defined but not configured." 32 #error "Console port 3 defined but not configured." 34 #error "Console port 4 defined but not configured." 36 #error "Console port 5 defined but not configured." 38 #error "Console port 6 defined but not configured." 232 #error "Bad CONFIG_CONS_INDEX." in default_serial_console()
|
| /rk3399_rockchip-uboot/drivers/i2c/ |
| H A D | tegra_i2c.c | 242 int error = 0; in send_recv_packets() local 272 error = -1; in send_recv_packets() 277 error = -1; in send_recv_packets() 298 error = -1; in send_recv_packets() 306 return error; in send_recv_packets() 312 int error; in tegra_i2c_write_data() local 323 error = send_recv_packets(i2c_bus, &trans_info); in tegra_i2c_write_data() 324 if (error) in tegra_i2c_write_data() 325 debug("tegra_i2c_write_data: Error (%d) !!!\n", error); in tegra_i2c_write_data() 327 return error; in tegra_i2c_write_data() [all …]
|
| /rk3399_rockchip-uboot/drivers/qe/ |
| H A D | fdt.c | 43 goto error; in fdt_fixup_qe_firmware() 47 goto error; in fdt_fixup_qe_firmware() 52 goto error; in fdt_fixup_qe_firmware() 56 error: in fdt_fixup_qe_firmware()
|
| /rk3399_rockchip-uboot/drivers/net/fsl-mc/ |
| H A D | mc.c | 402 int error; in load_mc_dpc() local 413 #error "CONFIG_SYS_LS_MC_DRAM_DPC_OFFSET not defined" in load_mc_dpc() 427 error = fdt_check_header(dpc_fdt_hdr); in load_mc_dpc() 428 if (error != 0) { in load_mc_dpc() 478 int error; in load_mc_dpl() local 489 #error "CONFIG_SYS_LS_MC_DRAM_DPL_OFFSET not defined" in load_mc_dpl() 503 error = fdt_check_header(dpl_fdt_hdr); in load_mc_dpl() 504 if (error != 0) { in load_mc_dpl() 506 return error; in load_mc_dpl() 634 int error = 0; in mc_init() local [all …]
|
| /rk3399_rockchip-uboot/include/configs/ |
| H A D | bcm_ep_board.h | 19 #error CONFIG_SYS_TEXT_BASE must be defined! 22 #error CONFIG_SYS_SDRAM_BASE must be defined! 25 #error CONFIG_SYS_SDRAM_SIZE must be defined!
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | bmp_logo.c | 43 int error (char * msg, FILE *fp) in error() function 102 error ("Input file is not a bitmap", fp); in main() 110 error ("Couldn't read bitmap data offset", fp); in main() 113 error ("Couldn't read bitmap width", fp); in main() 116 error ("Couldn't read bitmap height", fp); in main() 119 error ("Couldn't read bitmap colors", fp); in main() 152 error ("Error allocating memory for file", fp); in main()
|
| H A D | proftool.c | 64 #define error(fmt, b...) outf(0, fmt, ##b) macro 125 error("Map file line %d: invalid format\n", linenum); in read_system_map() 166 error("Cannot read profile file at pos %ld\n", ftell(fin)); in read_data() 217 error("Cannot allocate call_list\n"); in read_calls() 265 error("Cannot open map file '%s'\n", fname); in read_map_file() 283 error("Cannot open profile data file '%s'\n", in read_profile_file() 307 error("Regex error '%s' in %s '%s'\n", buf, op, name); in regex_report_error() 406 error("Cannot allocate config line\n"); in read_trace_config() 412 error("Invalid trace config data on line %d\n", in read_trace_config() 421 error("Unknown command in trace config data line %d\n", in read_trace_config() [all …]
|
| H A D | microcode-tool.py | 276 parser.error('Please specify a command') 279 parser.error("Unknown command '%s'" % cmd) 282 parser.error("You must specify either header files or a microcode file, not both") 288 parser.error('You must specify a microcode file (or header files)') 296 parser.error('You must specify a model to create') 305 parser.error("Unknown model '%s' (%s) - try 'list' to list" % 308 parser.error("Ambiguous model '%s' (%s) matched %s - try 'list' " 314 parser.error("Unknown command '%s'" % cmd)
|
| H A D | microcode-tool | 276 parser.error('Please specify a command') 279 parser.error("Unknown command '%s'" % cmd) 282 parser.error("You must specify either header files or a microcode file, not both") 288 parser.error('You must specify a microcode file (or header files)') 296 parser.error('You must specify a model to create') 305 parser.error("Unknown model '%s' (%s) - try 'list' to list" % 308 parser.error("Ambiguous model '%s' (%s) matched %s - try 'list' " 314 parser.error("Unknown command '%s'" % cmd)
|
| /rk3399_rockchip-uboot/drivers/mtd/ |
| H A D | cfi_mtd.c | 31 int error, sect; in cfi_mtd_erase() local 52 error = flash_erase(fi, s_first, s_last); in cfi_mtd_erase() 55 if (error) { in cfi_mtd_erase() 85 int error; in cfi_mtd_write() local 88 error = write_buff(fi, (u_char*)buf, t, len); in cfi_mtd_write() 91 if (!error) { in cfi_mtd_write() 207 int error, i; in cfi_mtd_init() local 219 error = cfi_mtd_set_erasesize(mtd, fi); in cfi_mtd_init() 220 if (error) in cfi_mtd_init()
|
| /rk3399_rockchip-uboot/board/kosagi/novena/ |
| H A D | novena.c | 77 int error; in drv_keyboard_init() local 86 error = input_init(&button_input, 0); in drv_keyboard_init() 87 if (error) { in drv_keyboard_init() 94 error = input_stdio_register(&dev); in drv_keyboard_init() 95 if (error) in drv_keyboard_init() 96 return error; in drv_keyboard_init()
|
| /rk3399_rockchip-uboot/board/gateworks/gw_ventana/ |
| H A D | gsc.c | 191 goto error; in do_gsc_sleep() 194 goto error; in do_gsc_sleep() 197 goto error; in do_gsc_sleep() 200 goto error; in do_gsc_sleep() 202 goto error; in do_gsc_sleep() 205 goto error; in do_gsc_sleep() 209 goto error; in do_gsc_sleep() 213 error: in do_gsc_sleep()
|
| /rk3399_rockchip-uboot/scripts/dtc/pylibfdt/ |
| H A D | libfdt.i_shipped | 41 # altogether. All # functions passed this value will return an error instead 50 """An exception caused by an error such as one of the codes above""" 55 return 'pylibfdt error %d: %s' % (self.err, fdt_strerror(self.err)) 58 """Get the string for an error number 64 String containing the associated error 69 """Raise an error if the return value is -ve 89 """Raise an error if the return value is NULL 102 FdtException if val indicates an error was reported and the error 106 # If we get just an integer error code, it means the function failed. 123 All methods raise an FdtException if an error occurs. To avoid this [all …]
|
| /rk3399_rockchip-uboot/common/ |
| H A D | usb_kbd.c | 541 int error; local 555 error = stdio_register(&usb_kbd_dev); 556 if (error) 557 return error; 561 error = iomux_doenv(stdin, stdinname); 562 if (error) 563 return error; 573 error = console_assign(stdin, DEVNAME); 574 if (error) 575 return error; [all …]
|
| /rk3399_rockchip-uboot/board/freescale/ls2080a/ |
| H A D | ls2080a.c | 61 int error = 0; in board_eth_init() local 64 error = smc91111_initialize(0, CONFIG_SMC91111_BASE); in board_eth_init() 68 error = cpu_eth_init(bis); in board_eth_init() 70 return error; in board_eth_init()
|