Skip to content

Commit

Permalink
Remove dynamic_debug register hex dumps
Browse files Browse the repository at this point in the history
Signed-off-by: David Flemström <david.flemstrom@gmail.com>
  • Loading branch information
dflemstr committed Mar 29, 2024
1 parent c32498f commit 1f2228f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions aquacomputer_d5next.c
Original file line number Diff line number Diff line change
Expand Up @@ -854,8 +854,6 @@ static int aqc_get_ctrl_data(struct aqc_data *priv)
if (ret < 0)
ret = -ENODATA;

print_hex_dump_bytes("ctrl_report: ", DUMP_PREFIX_OFFSET, priv->buffer, priv->buffer_size);

priv->last_ctrl_report_op = ktime_get();

return ret;
Expand Down Expand Up @@ -1197,8 +1195,6 @@ static int aqc_legacy_read(struct aqc_data *priv)
if (ret < 0)
goto unlock_and_return;

print_hex_dump_bytes("ctrl_report: ", DUMP_PREFIX_OFFSET, priv->buffer, priv->buffer_size);

/* Temperature sensor readings */
for (i = 0; i < priv->num_temp_sensors; i++) {
sensor_value = get_unaligned_le16(priv->buffer + priv->temp_sensor_start_offset +
Expand Down Expand Up @@ -2522,8 +2518,6 @@ static int aqc_raw_event(struct hid_device *hdev, struct hid_report *report, u8
if (report->id != STATUS_REPORT_ID)
return 0;

print_hex_dump_bytes("status_report: ", DUMP_PREFIX_OFFSET, data, size);

priv = hid_get_drvdata(hdev);

/* Info provided with every report */
Expand Down

0 comments on commit 1f2228f

Please sign in to comment.