/openbmc/linux/drivers/edac/ |
H A D | mce_amd.c | 32 * string representation for the different MCA reported error types, see F3x48 57 /* internal error type */ 62 "Parity error during data load from IC", 63 "Parity error for IC valid bit", 64 "Main tag parity error", 65 "Parity error in prediction queue", 66 "PFB data/address parity error", 67 "Parity error in the branch status reg", 68 "PFB promotion address error", 69 "Tag error during probe/victimization", [all …]
|
/openbmc/linux/arch/m68k/fpsp040/ |
H A D | tbldo.S | 63 .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 …]
|
/openbmc/linux/drivers/input/touchscreen/ |
H A D | rohm_bu21023.c | 122 #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 D | goodix_fwupload.c | 63 dev_err(dev, "Main firmware checksum error\n"); in goodix_firmware_verify() 70 dev_err(dev, "DSP firmware checksum error\n"); in goodix_firmware_verify() 88 int tries, error; in goodix_enter_upload_mode() local 93 error = goodix_i2c_write_u8(client, in goodix_enter_upload_mode() 95 if (error) in goodix_enter_upload_mode() 96 return error; in goodix_enter_upload_mode() 98 error = goodix_i2c_read(client, in goodix_enter_upload_mode() 100 if (error) in goodix_enter_upload_mode() 101 return error; in goodix_enter_upload_mode() 108 dev_err(&client->dev, "Error could not hold ss51 & dsp\n"); in goodix_enter_upload_mode() [all …]
|
H A D | raydium_i2c_ts.c | 171 int error; in raydium_i2c_send() local 211 error = raydium_i2c_xfer(client, addr, xfer, ARRAY_SIZE(xfer)); in raydium_i2c_send() 212 if (likely(!error)) in raydium_i2c_send() 218 dev_err(&client->dev, "%s failed: %d\n", __func__, error); in raydium_i2c_send() 221 return error; in raydium_i2c_send() 227 int error; in raydium_i2c_read() local 266 error = raydium_i2c_xfer(client, addr, xfer, ARRAY_SIZE(xfer)); in raydium_i2c_read() 267 if (unlikely(error)) in raydium_i2c_read() 268 return error; in raydium_i2c_read() 281 int error; in raydium_i2c_sw_reset() local [all …]
|
H A D | ilitek_ts_i2c.c | 98 int error; in ilitek_i2c_write_and_read() local 116 error = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs)); in ilitek_i2c_write_and_read() 117 if (error < 0) in ilitek_i2c_write_and_read() 118 return error; in ilitek_i2c_write_and_read() 121 error = i2c_transfer(client->adapter, msgs, 1); in ilitek_i2c_write_and_read() 122 if (error < 0) in ilitek_i2c_write_and_read() 123 return error; in ilitek_i2c_write_and_read() 129 error = i2c_transfer(client->adapter, msgs + 1, 1); in ilitek_i2c_write_and_read() 130 if (error < 0) in ilitek_i2c_write_and_read() 131 return error; in ilitek_i2c_write_and_read() [all …]
|
H A D | hycon-hy46xx.c | 94 "checksum error: 0x%02x expected, got 0x%02x\n", in hycon_hy46xx_check_checksum() 106 int error; in hycon_hy46xx_isr() local 110 error = regmap_bulk_read(tsdata->regmap, 0, rdbuf, sizeof(rdbuf)); in hycon_hy46xx_isr() 111 if (error) { in hycon_hy46xx_isr() 112 dev_err_ratelimited(dev, "Unable to fetch data, error: %d\n", in hycon_hy46xx_isr() 113 error); in hycon_hy46xx_isr() 185 int error = 0; in hycon_hy46xx_setting_show() local 190 error = regmap_read(tsdata->regmap, attr->address, &val); in hycon_hy46xx_setting_show() 191 if (error < 0) { in hycon_hy46xx_setting_show() 193 "Failed to fetch attribute %s, error %d\n", in hycon_hy46xx_setting_show() [all …]
|
H A D | silead.c | 124 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 D | ili210x.c | 89 int error, ret; in ili210x_read_reg() local 93 error = ret < 0 ? ret : -EIO; in ili210x_read_reg() 94 dev_err(&client->dev, "%s failed: %d\n", __func__, error); in ili210x_read_reg() 95 return error; in ili210x_read_reg() 138 int error; in ili211x_read_touch_data() local 144 error = ret < 0 ? ret : -EIO; in ili211x_read_touch_data() 145 dev_err(&client->dev, "%s failed: %d\n", __func__, error); in ili211x_read_touch_data() 146 return error; in ili211x_read_touch_data() 155 "CRC error (crc=0x%02x expected=0x%02x)\n", in ili211x_read_touch_data() 231 int error; in ili251x_read_reg_common() local [all …]
|
H A D | chipone_icn8505.c | 105 "Error reading addr %#x reg %#x: %d\n", in icn8505_read_xfer() 139 "Error writing addr %#x reg %#x: %d\n", in icn8505_write_xfer() 157 int error; in icn8505_read_reg_silent() local 159 error = icn8505_read_xfer(icn8505->client, icn8505->client->addr, reg, in icn8505_read_reg_silent() 161 if (error) in icn8505_read_reg_silent() 162 return error; in icn8505_read_reg_silent() 204 int error; in icn8505_try_fw_upload() local 209 error = icn8505_write_prog_reg(icn8505, 0xcc3355, 0x5a); in icn8505_try_fw_upload() 210 if (error) in icn8505_try_fw_upload() 211 return error; in icn8505_try_fw_upload() [all …]
|
/openbmc/linux/drivers/base/test/ |
H A D | property-entry-test.c | 25 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 …]
|
/openbmc/linux/drivers/input/mouse/ |
H A D | elan_i2c_i2c.c | 142 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 D | cyapa.c | 126 * Return negative errno code on error; return zero when success. 172 int error; in cyapa_get_state() local 182 error = cyapa_i2c_reg_read_block(cyapa, BL_HEAD_OFFSET, BL_STATUS_SIZE, in cyapa_get_state() 190 if (cyapa->smbus && (error == -ETIMEDOUT || error == -ENXIO)) { in cyapa_get_state() 192 error = cyapa_read_block(cyapa, in cyapa_get_state() 197 if (error != BL_STATUS_SIZE) in cyapa_get_state() 198 goto error; in cyapa_get_state() 210 error = cyapa_gen3_ops.state_parse(cyapa, in cyapa_get_state() 212 if (!error) in cyapa_get_state() 218 error = cyapa_pip_state_parse(cyapa, in cyapa_get_state() [all …]
|
H A D | elan_i2c_smbus.c | 58 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 …]
|
/openbmc/linux/fs/ |
H A D | init.c | 47 int error; in init_chdir() local 49 error = kern_path(filename, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path); in init_chdir() 50 if (error) in init_chdir() 51 return error; in init_chdir() 52 error = path_permission(&path, MAY_EXEC | MAY_CHDIR); in init_chdir() 53 if (!error) in init_chdir() 56 return error; in init_chdir() 62 int error; in init_chroot() local 64 error = kern_path(filename, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path); in init_chroot() 65 if (error) in init_chroot() [all …]
|
/openbmc/linux/drivers/input/misc/ |
H A D | bma150.c | 181 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 …]
|
/openbmc/linux/fs/gfs2/ |
H A D | inode.c | 111 * Returns: A VFS inode, or an error 121 int error; in gfs2_inode_lookup() local 135 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, in gfs2_inode_lookup() 137 if (unlikely(error)) in gfs2_inode_lookup() 140 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, in gfs2_inode_lookup() 142 if (unlikely(error)) in gfs2_inode_lookup() 154 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, in gfs2_inode_lookup() 158 if (unlikely(error)) in gfs2_inode_lookup() 167 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, in gfs2_inode_lookup() 169 if (error) in gfs2_inode_lookup() [all …]
|
H A D | xattr.c | 93 int error = 0; in ea_foreach_i() local 106 error = ea_call(ip, bh, ea, prev, data); in ea_foreach_i() 107 if (error) in ea_foreach_i() 108 return error; in ea_foreach_i() 118 return error; in ea_foreach_i() 129 int error; in ea_foreach() local 131 error = gfs2_meta_read(ip->i_gl, ip->i_eattr, DIO_WAIT, 0, &bh); in ea_foreach() 132 if (error) in ea_foreach() 133 return error; in ea_foreach() 136 error = ea_foreach_i(ip, bh, ea_call, data); in ea_foreach() [all …]
|
/openbmc/u-boot/drivers/crypto/fsl/ |
H A D | error.c | 3 * CAAM Error Reporting 7 * Derived from error.c file in linux drivers/crypto/caam 33 { 0x00, "No error." }, 34 { 0x01, "SGT Length Error. The descriptor is trying to read" \ 36 { 0x02, "SGT Null Entry Error." }, 37 { 0x03, "Job Ring Control Error. Bad value in Job Ring Control reg." }, 52 { 0x12, "Shared Descriptor Header Error" }, 53 { 0x13, "Header Error. Invalid length or parity, or other problems." }, 54 { 0x14, "Burster Error. Burster has gotten to an illegal state" }, 55 { 0x15, "Context Register Length Error" }, [all …]
|
/openbmc/libcper/specification/document/ |
H A D | cper-json-specification.tex | 92 severity & object & An error severity structure as described in \ref{subsection:headererrorseverity… 104 …ptional}) & If validation bit is set, GUID identifying the partition on which the error occurred.\\ 106 creatorID & string & A GUID identifying the creator of the error record. May be overwritten by subs… 110 …when combined with the \texttt{creatorID} field, uniquely identifies this error record on a given … 114 persistenceInfo & uint64 & Produced and consumed by the creator of the error record identified by \… 117 % Header error severity. 118 \subsection{Header Error Severity Structure} 120 This structure describes the error severity of a single CPER record. 122 name & string & The human readable name of this error severity, if known. \\ 124 code & uint64 & The integer value of this error severity. \\ [all …]
|
/openbmc/phosphor-power/org/open_power/Witherspoon/ |
H A D | Fault.errors.yaml | 31 description: CPLD's error reason is PSU0_PGOOD fail 34 description: CPLD's error reason is PSU1_PGOOD fail 37 description: CPLD's error reason is 240Va_Fault_A fail 40 description: CPLD's error reason is 240Va_Fault_B fail 43 description: CPLD's error reason is 240Va_Fault_C fail 46 description: CPLD's error reason is 240Va_Fault_D fail 49 description: CPLD's error reason is 240Va_Fault_E fail 52 description: CPLD's error reason is 240Va_Fault_F fail 55 description: CPLD's error reason is 240Va_Fault_G fail 58 description: CPLD's error reason is 240Va_Fault_H fail [all …]
|
/openbmc/qemu/include/qapi/ |
H A D | error.h | 2 * QEMU Error Objects 16 * Error reporting system loosely patterned after Glib's GError. 20 * - Functions that use Error to report errors have an Error **errp 24 * - You may pass NULL to not receive the error, &error_abort to abort 25 * on error, &error_fatal to exit(1) on error, or a pointer to a 26 * variable containing NULL to receive the error. 29 * errors and failing cleanly; handling the error is its caller's 30 * job. Since the value of @errp is about handling the error, the 38 * should set a new error, e.g. with error_setg(errp, ...), or 42 * failure. This can make the error checking more concise, and can [all …]
|
/openbmc/linux/drivers/phy/motorola/ |
H A D | phy-cpcap-usb.c | 134 int error, value = 0; in cpcap_usb_vbus_valid() local 136 error = iio_read_channel_processed(ddata->vbus, &value); in cpcap_usb_vbus_valid() 137 if (error >= 0) in cpcap_usb_vbus_valid() 140 dev_err(ddata->dev, "error reading VBUS: %i\n", error); in cpcap_usb_vbus_valid() 171 int val, error; in cpcap_phy_get_ints_state() local 173 error = regmap_read(ddata->reg, CPCAP_REG_INTS1, &val); in cpcap_phy_get_ints_state() 174 if (error) in cpcap_phy_get_ints_state() 175 return error; in cpcap_phy_get_ints_state() 181 error = regmap_read(ddata->reg, CPCAP_REG_INTS2, &val); in cpcap_phy_get_ints_state() 182 if (error) in cpcap_phy_get_ints_state() [all …]
|
/openbmc/linux/fs/xfs/libxfs/ |
H A D | xfs_rmap.c | 44 int error; in xfs_rmap_lookup_le() local 52 error = xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat); in xfs_rmap_lookup_le() 53 if (error || !(*stat) || !irec) in xfs_rmap_lookup_le() 54 return error; in xfs_rmap_lookup_le() 56 error = xfs_rmap_get_rec(cur, irec, &get_stat); in xfs_rmap_lookup_le() 57 if (error) in xfs_rmap_lookup_le() 58 return error; in xfs_rmap_lookup_le() 90 * This either works (return 0) or gets an EFSCORRUPTED error. 98 int error; in xfs_rmap_update() local 109 error = xfs_btree_update(cur, &rec); in xfs_rmap_update() [all …]
|
H A D | xfs_attr.c | 169 int level, error; 181 error = xfs_da3_node_read_mapped(state->args->trans, 184 if (error) 185 return error; 199 error = xfs_da3_node_read_mapped(state->args->trans, 202 if (error) 203 return error; 221 * Returns 0 on successful retrieval, otherwise an error. 260 int error; in xfs_attr_get() local 275 error = xfs_attr_get_ilocked(args); in xfs_attr_get() [all …]
|