Home
last modified time | relevance | path

Searched full:error (Results 1 – 25 of 6473) sorted by relevance

12345678910>>...259

/linux/arch/m68k/fpsp040/
H A Dtbldo.S63 .long serror |$01-5 fint ERROR
64 .long serror |$01-6 fint ERROR
65 .long serror |$01-7 fint ERROR
72 .long serror |$02-5 fsinh ERROR
73 .long serror |$02-6 fsinh ERROR
74 .long serror |$02-7 fsinh ERROR
81 .long serror |$03-5 fintrz ERROR
82 .long serror |$03-6 fintrz ERROR
83 .long serror |$03-7 fintrz ERROR
85 .long serror |$04-0 ERROR - illegal extension
[all …]
/linux/drivers/input/touchscreen/
H A Drohm_bu21023.c122 #define ERROR 0x80 macro
332 int error, error2; in rohm_ts_manual_calibration() local
347 error = i2c_smbus_write_byte_data(client, INT_MASK, in rohm_ts_manual_calibration()
350 if (error) in rohm_ts_manual_calibration()
353 error = i2c_smbus_write_byte_data(client, TEST1, in rohm_ts_manual_calibration()
355 if (error) in rohm_ts_manual_calibration()
364 error = rohm_i2c_burst_read(client, PRM1_X_H, buf, sizeof(buf)); in rohm_ts_manual_calibration()
365 if (error) in rohm_ts_manual_calibration()
378 error = i2c_smbus_write_byte_data(client, TEST1, in rohm_ts_manual_calibration()
380 if (error) in rohm_ts_manual_calibration()
[all …]
H A Dsilead.c124 int error; in silead_ts_request_input_dev() local
149 error = input_register_device(data->input); in silead_ts_request_input_dev()
150 if (error) { in silead_ts_request_input_dev()
151 dev_err(dev, "Failed to register input device: %d\n", error); in silead_ts_request_input_dev()
152 return error; in silead_ts_request_input_dev()
161 int error; in silead_ts_request_pen_input_dev() local
183 error = input_register_device(data->pen_input); in silead_ts_request_pen_input_dev()
184 if (error) { in silead_ts_request_pen_input_dev()
185 dev_err(dev, "Failed to register pen input device: %d\n", error); in silead_ts_request_pen_input_dev()
186 return error; in silead_ts_request_pen_input_dev()
[all …]
H A Dchipone_icn8505.c104 "Error reading addr %#x reg %#x: %d\n", in icn8505_read_xfer()
138 "Error writing addr %#x reg %#x: %d\n", in icn8505_write_xfer()
156 int error; in icn8505_read_reg_silent() local
158 error = icn8505_read_xfer(icn8505->client, icn8505->client->addr, reg, in icn8505_read_reg_silent()
160 if (error) in icn8505_read_reg_silent()
161 return error; in icn8505_read_reg_silent()
203 int error; in icn8505_try_fw_upload() local
208 error = icn8505_write_prog_reg(icn8505, 0xcc3355, 0x5a); in icn8505_try_fw_upload()
209 if (error) in icn8505_try_fw_upload()
210 return error; in icn8505_try_fw_upload()
[all …]
H A Dhimax_hx83112b.c86 int error; in himax_bus_enable_burst() local
88 error = regmap_write(ts->regmap, HIMAX_AHB_ADDR_CONTI, in himax_bus_enable_burst()
90 if (error) in himax_bus_enable_burst()
91 return error; in himax_bus_enable_burst()
93 error = regmap_write(ts->regmap, HIMAX_AHB_ADDR_INCR4, in himax_bus_enable_burst()
95 if (error) in himax_bus_enable_burst()
96 return error; in himax_bus_enable_burst()
104 int error; in himax_bus_read() local
107 error = himax_bus_enable_burst(ts); in himax_bus_read()
108 if (error) in himax_bus_read()
[all …]
H A Dbu21013_ts.c240 int error; in bu21013_gpio_irq() local
243 error = bu21013_do_touch_report(ts); in bu21013_gpio_irq()
244 if (error) { in bu21013_gpio_irq()
264 int error; in bu21013_init_chip() local
266 error = i2c_smbus_write_byte_data(client, BU21013_RESET_REG, in bu21013_init_chip()
268 if (error) { in bu21013_init_chip()
270 return error; in bu21013_init_chip()
274 error = i2c_smbus_write_byte_data(client, BU21013_SENSOR_0_7_REG, in bu21013_init_chip()
276 if (error) { in bu21013_init_chip()
278 return error; in bu21013_init_chip()
[all …]
/linux/drivers/base/test/
H A Dproperty-entry-test.c25 int error; in pe_test_uints() local
30 error = fwnode_property_count_u8(node, "prop-u8"); in pe_test_uints()
31 KUNIT_EXPECT_EQ(test, error, 1); in pe_test_uints()
33 error = fwnode_property_read_u8(node, "prop-u8", &val_u8); in pe_test_uints()
34 KUNIT_EXPECT_EQ(test, error, 0); in pe_test_uints()
37 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 1); in pe_test_uints()
38 KUNIT_EXPECT_EQ(test, error, 0); in pe_test_uints()
41 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 2); in pe_test_uints()
42 KUNIT_EXPECT_NE(test, error, 0); in pe_test_uints()
44 error = fwnode_property_read_u8(node, "no-prop-u8", &val_u8); in pe_test_uints()
[all …]
/linux/drivers/input/mouse/
H A Delan_i2c_i2c.c142 int error; in elan_i2c_initialize() local
145 error = elan_i2c_write_cmd(client, ETP_I2C_STAND_CMD, ETP_I2C_RESET); in elan_i2c_initialize()
146 if (error) { in elan_i2c_initialize()
147 dev_err(dev, "device reset failed: %d\n", error); in elan_i2c_initialize()
148 return error; in elan_i2c_initialize()
155 error = i2c_master_recv(client, val, ETP_I2C_INF_LENGTH); in elan_i2c_initialize()
156 if (error < 0) { in elan_i2c_initialize()
157 dev_err(dev, "failed to read reset response: %d\n", error); in elan_i2c_initialize()
158 return error; in elan_i2c_initialize()
161 error = elan_i2c_read_block(client, ETP_I2C_DESC_CMD, in elan_i2c_initialize()
[all …]
H A Delan_i2c_smbus.c58 int len, error; in elan_smbus_initialize() local
65 error = len < 0 ? len : -EIO; in elan_smbus_initialize()
66 return error; in elan_smbus_initialize()
77 error = i2c_smbus_write_byte(client, ETP_SMBUS_ENABLE_TP); in elan_smbus_initialize()
78 if (error) { in elan_smbus_initialize()
79 dev_err(&client->dev, "failed to enable touchpad: %d\n", error); in elan_smbus_initialize()
80 return error; in elan_smbus_initialize()
117 int error; in elan_smbus_calibrate_result() local
122 error = i2c_smbus_read_block_data(client, in elan_smbus_calibrate_result()
124 if (error < 0) in elan_smbus_calibrate_result()
[all …]
/linux/drivers/crypto/intel/qat/qat_common/
H A Dadf_gen4_ras.h10 /* ERRSOU0 Correctable error mask*/
13 /* HI AE Correctable error log */
16 /* HI AE Correctable error log enable */
31 /* HI AE Uncorrectable error log */
34 /* HI AE Uncorrectable error log enable */
37 /* HI CPP Agent Command parity error log */
40 /* HI CPP Agent Command parity error logging enable */
43 /* RI Memory parity error status register */
46 /* RI Memory parity error reporting enable */
50 * RI Memory parity error mask
[all …]
/linux/drivers/input/misc/
H A Dbma150.c181 int error; in bma150_set_mode() local
183 error = bma150_set_reg_bits(bma150->client, mode, BMA150_WAKE_UP_POS, in bma150_set_mode()
185 if (error) in bma150_set_mode()
186 return error; in bma150_set_mode()
188 error = bma150_set_reg_bits(bma150->client, mode, BMA150_SLEEP_POS, in bma150_set_mode()
190 if (error) in bma150_set_mode()
191 return error; in bma150_set_mode()
202 int error; in bma150_soft_reset() local
204 error = bma150_set_reg_bits(bma150->client, 1, BMA150_SW_RES_POS, in bma150_soft_reset()
206 if (error) in bma150_soft_reset()
[all …]
H A Ddrv2667.c133 int error; in drv2667_set_waveform_freq() local
141 "ERROR: Frequency calculated to %i\n", freq); in drv2667_set_waveform_freq()
145 error = regmap_read(haptics->regmap, DRV2667_PAGE, &read_buf); in drv2667_set_waveform_freq()
146 if (error) { in drv2667_set_waveform_freq()
148 "Failed to read the page number: %d\n", error); in drv2667_set_waveform_freq()
154 error = regmap_write(haptics->regmap, in drv2667_set_waveform_freq()
156 if (error) { in drv2667_set_waveform_freq()
158 "Failed to set the page: %d\n", error); in drv2667_set_waveform_freq()
163 error = regmap_write(haptics->regmap, DRV2667_RAM_FREQ, freq); in drv2667_set_waveform_freq()
164 if (error) in drv2667_set_waveform_freq()
[all …]
H A Dda7280.c286 int error; in da7280_haptic_mem_update() local
289 error = regmap_read(haptics->regmap, DA7280_IRQ_STATUS1, &val); in da7280_haptic_mem_update()
290 if (error) in da7280_haptic_mem_update()
291 return error; in da7280_haptic_mem_update()
300 error = regmap_read(haptics->regmap, DA7280_MEM_CTL2, &val); in da7280_haptic_mem_update()
301 if (error) in da7280_haptic_mem_update()
302 return error; in da7280_haptic_mem_update()
309 error = regmap_update_bits(haptics->regmap, in da7280_haptic_mem_update()
313 if (error) in da7280_haptic_mem_update()
314 return error; in da7280_haptic_mem_update()
[all …]
/linux/fs/xfs/scrub/
H A Dparent_repair.c216 int error; in xrep_setup_parent() local
227 error = xrep_tempfile_create(sc, S_IFREG); in xrep_setup_parent()
228 if (error) in xrep_setup_parent()
229 return error; in xrep_setup_parent()
245 int error; in xrep_parent_find_dotdot() local
271 error = xrep_findparent_confirm(sc, &ino); in xrep_parent_find_dotdot()
272 if (!error && ino != NULLFSINO) { in xrep_parent_find_dotdot()
279 error = xrep_findparent_scan(&rp->pscan); in xrep_parent_find_dotdot()
283 return error; in xrep_parent_find_dotdot()
333 int error; in xrep_parent_replay_updates() local
[all …]
H A Drtrefcount_repair.c172 int error = 0; in xrep_rtrefc_stash() local
174 if (xchk_should_terminate(rr->sc, &error)) in xrep_rtrefc_stash()
175 return error; in xrep_rtrefc_stash()
179 error = xrep_rtrefc_check_ext(rr->sc, &irec); in xrep_rtrefc_stash()
180 if (error) in xrep_rtrefc_stash()
181 return error; in xrep_rtrefc_stash()
224 int error = 0; in xrep_rtrefc_walk_rmaps() local
235 if (xchk_should_terminate(rr->sc, &error)) in xrep_rtrefc_walk_rmaps()
236 return error; in xrep_rtrefc_walk_rmaps()
238 error = xfs_btree_increment(cur, 0, &have_gt); in xrep_rtrefc_walk_rmaps()
[all …]
H A Drtrmap_repair.c106 int error; in xrep_setup_rtrmapbt() local
110 error = xrep_setup_xfbtree(sc, "realtime reverse mapping records"); in xrep_setup_rtrmapbt()
111 if (error) in xrep_setup_rtrmapbt()
112 return error; in xrep_setup_rtrmapbt()
156 int error = 0; in xrep_rtrmap_stash() local
158 if (xchk_should_terminate(sc, &error)) in xrep_rtrmap_stash()
159 return error; in xrep_rtrmap_stash()
169 error = xfs_rmap_map_raw(mcur, &rmap); in xrep_rtrmap_stash()
170 xfs_btree_del_cursor(mcur, error); in xrep_rtrmap_stash()
171 if (error) in xrep_rtrmap_stash()
[all …]
H A Dparent.c36 int error; in xchk_setup_parent() local
39 error = xrep_setup_parent(sc); in xchk_setup_parent()
40 if (error) in xchk_setup_parent()
41 return error; in xchk_setup_parent()
67 int error = 0; in xchk_parent_actor() local
71 error = -EFSCORRUPTED; in xchk_parent_actor()
72 if (!xchk_fblock_xref_process_error(sc, XFS_DATA_FORK, 0, &error)) in xchk_parent_actor()
73 return error; in xchk_parent_actor()
78 if (xchk_should_terminate(spc->sc, &error)) in xchk_parent_actor()
79 return error; in xchk_parent_actor()
[all …]
H A Ddir_repair.c189 int error; in xrep_setup_directory() local
193 error = xrep_orphanage_try_create(sc); in xrep_setup_directory()
194 if (error) in xrep_setup_directory()
195 return error; in xrep_setup_directory()
197 error = xrep_tempfile_create(sc, S_IFDIR); in xrep_setup_directory()
198 if (error) in xrep_setup_directory()
199 return error; in xrep_setup_directory()
221 int error; in xrep_dir_lookup_parent() local
223 error = xfs_dir_lookup(sc->tp, sc->ip, &xfs_name_dotdot, &ino, NULL); in xrep_dir_lookup_parent()
224 if (error) in xrep_dir_lookup_parent()
[all …]
H A Dattr_repair.c201 int error = 0; in xrep_xattr_salvage_key() local
203 if (xchk_should_terminate(rx->sc, &error)) in xrep_xattr_salvage_key()
204 return error; in xrep_xattr_salvage_key()
226 error = xfblob_store(rx->xattr_blobs, &key.name_cookie, name, in xrep_xattr_salvage_key()
228 if (error) in xrep_xattr_salvage_key()
229 return error; in xrep_xattr_salvage_key()
231 error = xfblob_store(rx->xattr_blobs, &key.value_cookie, value, in xrep_xattr_salvage_key()
233 if (error) in xrep_xattr_salvage_key()
234 return error; in xrep_xattr_salvage_key()
236 error = xfarray_append(rx->xattr_records, &key); in xrep_xattr_salvage_key()
[all …]
H A Drcbag.c37 int error; in rcbag_init() local
46 error = rcbagbt_mem_init(mp, &bag->xfbtree, btp); in rcbag_init()
47 if (error) in rcbag_init()
55 return error; in rcbag_init()
80 int error; in rcbag_add() local
83 error = rcbagbt_lookup_eq(cur, rmap, &has); in rcbag_add()
84 if (error) in rcbag_add()
88 error = rcbagbt_get_rec(cur, &bagrec, &has); in rcbag_add()
89 if (error) in rcbag_add()
92 error = -EFSCORRUPTED; in rcbag_add()
[all …]
H A Dagheader_repair.c47 int error; in xrep_superblock() local
54 error = xfs_sb_get_secondary(mp, sc->tp, agno, &bp); in xrep_superblock()
55 if (error) in xrep_superblock()
56 return error; in xrep_superblock()
59 if (xchk_should_terminate(sc, &error)) in xrep_superblock()
60 return error; in xrep_superblock()
100 int error = 0; in xrep_agf_walk_allocbt() local
102 if (xchk_should_terminate(raa->sc, &error)) in xrep_agf_walk_allocbt()
103 return error; in xrep_agf_walk_allocbt()
108 return error; in xrep_agf_walk_allocbt()
[all …]
H A Drefcount_repair.c136 int error; in xrep_refc_check_ext() local
142 error = xfs_alloc_has_records(sc->sa.bno_cur, rec->rc_startblock, in xrep_refc_check_ext()
144 if (error) in xrep_refc_check_ext()
145 return error; in xrep_refc_check_ext()
150 error = xfs_ialloc_has_inodes_at_extent(sc->sa.ino_cur, in xrep_refc_check_ext()
152 if (error) in xrep_refc_check_ext()
153 return error; in xrep_refc_check_ext()
175 int error = 0; in xrep_refc_stash() local
177 if (xchk_should_terminate(sc, &error)) in xrep_refc_stash()
178 return error; in xrep_refc_stash()
[all …]
/linux/fs/gfs2/
H A Dxattr.c93 int error = 0; in ea_foreach_i() local
112 error = ea_call(ip, bh, ea, prev, data); in ea_foreach_i()
113 if (error) in ea_foreach_i()
114 return error; in ea_foreach_i()
126 return error; in ea_foreach_i()
133 int error; in ea_foreach() local
135 error = gfs2_meta_read(ip->i_gl, ip->i_eattr, DIO_WAIT, 0, &bh); in ea_foreach()
136 if (error) in ea_foreach()
137 return error; in ea_foreach()
140 error = ea_foreach_i(ip, bh, ea_call, data); in ea_foreach()
[all …]
/linux/drivers/media/dvb-frontends/
H A Ddrxk_hard.c239 pr_err("i2c write error at addr 0x%02x\n", adr); in i2c_write()
258 pr_cont(": ERROR!\n"); in i2c_read()
262 pr_err("i2c read error at addr 0x%02x\n", adr); in i2c_read()
435 pr_err("%s: i2c write error at addr 0x%02x\n", in write_block()
473 goto error; in power_up_device()
479 goto error; in power_up_device()
482 goto error; in power_up_device()
486 goto error; in power_up_device()
490 error: in power_up_device()
492 pr_err("Error %d on %s\n", status, __func__); in power_up_device()
[all …]
/linux/drivers/crypto/caam/
H A Derror.c3 * CAAM Error Reporting
11 #include "error.h"
66 { 0x00, "No error." },
67 …{ 0x01, "SGT Length Error. The descriptor is trying to read more data than is contained in the SGT…
68 { 0x02, "SGT Null Entry Error." },
69 { 0x03, "Job Ring Control Error. There is a bad value in the Job Ring Control register." },
82 … FIFO STORE decremented the input or output sequence length below 0. This error may result if a bu…
84 { 0x12, "Shared Descriptor Header Error" },
85 { 0x13, "Header Error. Invalid length or parity, or certain other problems." },
86 { 0x14, "Burster Error. Burster has gotten to an illegal state" },
[all …]

12345678910>>...259