Lines Matching defs:value
63 pkt.value = cpu_to_le64(val);
87 pkt.value = cpu_to_le64(state);
735 u32 value;
743 rc = kstrtouint_from_user(buf, count, 16, &value);
753 rc = hdev->asic_funcs->debugfs_write32(hdev, addr, value);
756 value, addr);
799 u64 value;
802 rc = kstrtoull_from_user(buf, count, 16, &value);
812 rc = hdev->asic_funcs->debugfs_write64(hdev, addr, value);
815 value, addr);
851 u32 value;
854 rc = kstrtouint_from_user(buf, count, 10, &value);
858 if (value == 1) {
864 } else if (value == 2) {
869 dev_dbg(hdev->dev, "invalid power state value %u\n", value);
909 u32 value;
912 rc = kstrtouint_from_user(buf, count, 16, &value);
917 entry->i2c_reg, value);
921 value, entry->i2c_bus, entry->i2c_addr, entry->i2c_reg);
933 u32 value;
936 rc = kstrtouint_from_user(buf, count, 10, &value);
940 value = value ? 1 : 0;
942 hl_debugfs_led_set(hdev, 0, value);
952 u32 value;
955 rc = kstrtouint_from_user(buf, count, 10, &value);
959 value = value ? 1 : 0;
961 hl_debugfs_led_set(hdev, 1, value);
971 u32 value;
974 rc = kstrtouint_from_user(buf, count, 10, &value);
978 value = value ? 1 : 0;
980 hl_debugfs_led_set(hdev, 2, value);
1048 u64 value;
1057 rc = kstrtoull_from_user(buf, count, 16, &value);
1061 hdev->clock_gating_mask = value;
1090 u32 value;
1099 rc = kstrtouint_from_user(buf, count, 10, &value);
1103 hdev->stop_on_err = value ? 1 : 0;