Home
last modified time | relevance | path

Searched refs:raw_id (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/arch/mips/kernel/
H A Dperf_event_mipsxx.c1708 unsigned int raw_id = config & 0xff; in mipsxx_pmu_map_raw_event() local
1709 unsigned int base_id = raw_id & 0x7f; in mipsxx_pmu_map_raw_event()
1717 raw_id > 127 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
1731 raw_id > 127 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
1747 raw_id > 127 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
1757 raw_id > 127 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
1765 raw_id = config & 0x1ff; in mipsxx_pmu_map_raw_event()
1766 base_id = raw_id & 0xff; in mipsxx_pmu_map_raw_event()
1771 raw_id > 255 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
1787 raw_id > 127 ? CNTR_ODD : CNTR_EVEN; in mipsxx_pmu_map_raw_event()
[all …]
/linux-6.15/rust/kernel/
H A Ddriver.rs157 let raw_id = unsafe { bindings::of_match_device(table.as_ptr(), dev.as_raw()) }; in of_id_info() localVariable
159 if raw_id.is_null() { in of_id_info()
164 let id = unsafe { &*raw_id.cast::<of::DeviceId>() }; in of_id_info()
/linux-6.15/include/linux/soc/qcom/
H A Dsocinfo.h32 __le32 raw_id; member
/linux-6.15/drivers/i2c/
H A Di2c-core-base.c2364 union i2c_smbus_data raw_id; in i2c_get_device_id() local
2370 raw_id.block[0] = 3; in i2c_get_device_id()
2373 I2C_SMBUS_I2C_BLOCK_DATA, &raw_id); in i2c_get_device_id()
2377 id->manufacturer_id = (raw_id.block[1] << 4) | (raw_id.block[2] >> 4); in i2c_get_device_id()
2378 id->part_id = ((raw_id.block[2] & 0xf) << 5) | (raw_id.block[3] >> 3); in i2c_get_device_id()
2379 id->die_revision = raw_id.block[3] & 0x7; in i2c_get_device_id()
/linux-6.15/drivers/hid/
H A Dhid-magicmouse.c214 static void magicmouse_emit_touch(struct magicmouse_sc *msc, int raw_id, u8 *tdata) in magicmouse_emit_touch() argument
257 msc->tracking_ids[raw_id] = id; in magicmouse_emit_touch()