Commit 335abaea authored by Florian Echtler's avatar Florian Echtler Committed by Dmitry Torokhov

Input: sur40 - silence unnecessary noisy debug output

This information is unneccessary, even as debug output.
Leave commented out as documentation of the packet ID quirk.
Signed-off-by: default avatarMartin Kaltenbrunner <modin@yuri.at>
Signed-off-by: default avatarFlorian Echtler <floe@butterbrot.org>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 435915ea
...@@ -374,10 +374,13 @@ static void sur40_poll(struct input_polled_dev *polldev) ...@@ -374,10 +374,13 @@ static void sur40_poll(struct input_polled_dev *polldev)
/* /*
* Sanity check. when video data is also being retrieved, the * Sanity check. when video data is also being retrieved, the
* packet ID will usually increase in the middle of a series * packet ID will usually increase in the middle of a series
* instead of at the end. * instead of at the end. However, the data is still consistent,
*/ * so the packet ID is probably just valid for the first packet
* in a series.
if (packet_id != le32_to_cpu(header->packet_id)) if (packet_id != le32_to_cpu(header->packet_id))
dev_dbg(sur40->dev, "packet ID mismatch\n"); dev_dbg(sur40->dev, "packet ID mismatch\n");
*/
packet_blobs = result / sizeof(struct sur40_blob); packet_blobs = result / sizeof(struct sur40_blob);
dev_dbg(sur40->dev, "received %d blobs\n", packet_blobs); dev_dbg(sur40->dev, "received %d blobs\n", packet_blobs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment