hidparse.sys: Use +hid debug channel.

Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-11-09 09:51:09 +01:00 committed by Alexandre Julliard
parent 5b735572c1
commit e9dc0cf83a
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
#include "wine/list.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(hidp);
WINE_DEFAULT_DEBUG_CHANNEL(hid);
/* Flags that are defined in the document
"Device Class Definition for Human Interface Devices" */
@ -122,7 +122,7 @@ static void debug_print_preparsed( struct hid_preparsed_data *data )
{
unsigned int i, end;
if (TRACE_ON( hidp ))
if (TRACE_ON(hid))
{
TRACE( "usage %02x:%02x input %u-(%u)-%u, report len %u output %u-(%u)-%u, report len %u "
"feature %u-(%u)-%u, report len %u collections %u\n", data->usage_page, data->usage,
@ -498,7 +498,7 @@ struct hid_preparsed_data *parse_descriptor( BYTE *descriptor, unsigned int leng
BYTE *ptr, *end;
int i;
if (TRACE_ON( hidp ))
if (TRACE_ON(hid))
{
TRACE( "descriptor %p, length %u:\n", descriptor, length );
for (i = 0; i < length;)