Commit a5f040cf authored by Maud Spierings's avatar Maud Spierings Committed by Dmitry Torokhov
Browse files

Input: fix the input_event struct documentation



Fix the datatype of the value field of the input_event struct which is
signed instead of unsigned.

Signed-off-by: default avatarMaud Spierings <maud_spierings@hotmail.com>
Link: https://lore.kernel.org/r/20241110-fix_input_doc-v1-1-745d5f908e61@hotmail.com


Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent bed0f759
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@ events on a read. Their layout is::
	    struct timeval time;
	    unsigned short type;
	    unsigned short code;
	    unsigned int value;
	    int value;
    };

``time`` is the timestamp, it returns the time at which the event happened.