All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Vicki Pfau <vi@endrift.com>
Cc: Felipe Balbi <balbi@kernel.org>, Maxim Devaev <mdevaev@gmail.com>,
	linux-usb@vger.kernel.org
Subject: Re: [PATCH 1/2] USB: gadget: f_hid: Add Get-Feature report
Date: Thu, 28 Jul 2022 10:08:13 +0200	[thread overview]
Message-ID: <YuJD7Xp3Ue86Y+I+@kroah.com> (raw)
In-Reply-To: <20220726005824.2817646-1-vi@endrift.com>

On Mon, Jul 25, 2022 at 05:58:25PM -0700, Vicki Pfau wrote:
> --- /dev/null
> +++ b/include/uapi/linux/usb/g_hid.h
> @@ -0,0 +1,38 @@
> +/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
> +/*
> + * g_hid.h -- Header file for USB HID gadget driver
> + *
> + * Copyright (C) 2022 Valve Software
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

This whole license "boilerplate" is not needed, and should be removed
(especially things like addresses, that's crazy).

Only thing that is needed is the SPDX line.

> + */
> +
> +#ifndef __UAPI_LINUX_USB_G_HID_H
> +#define __UAPI_LINUX_USB_G_HID_H
> +
> +#include <linux/types.h>
> +
> +struct usb_hidg_report {
> +	__u16 length;
> +	__u8 data[512];

Why 512?

> +};
> +
> +/* The 'g' code is also used by gadgetfs and hid gadget ioctl requests.
> + * Don't add any colliding codes to either driver, and keep
> + * them in unique ranges (size 0x20 for now).
> + */
> +#define GADGET_HID_WRITE_GET_REPORT	_IOW('g', 0x42, struct usb_hidg_report)

This should be in the same .h file so that we don't get confused and
accidentally use the same ioctl.

> +
> +#endif /* __UAPI_LINUX_USB_G_HID_H */
> diff --git a/include/uapi/linux/usb/gadgetfs.h b/include/uapi/linux/usb/gadgetfs.h
> index 835473910a49..9754822b2a40 100644
> --- a/include/uapi/linux/usb/gadgetfs.h
> +++ b/include/uapi/linux/usb/gadgetfs.h
> @@ -62,7 +62,7 @@ struct usb_gadgetfs_event {
>  };
>  
>  
> -/* The 'g' code is also used by printer gadget ioctl requests.
> +/* The 'g' code is also used by printer and hid gadget ioctl requests.

Yeah, put the definition here.

thanks,

greg k-h

  parent reply	other threads:[~2022-07-28  8:08 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-26  0:58 [PATCH 1/2] USB: gadget: f_hid: Add Get-Feature report Vicki Pfau
2022-07-26  0:58 ` [PATCH 2/2] USB: gadget: f_hid: Add Set-Feature report Vicki Pfau
2022-07-26  9:51   ` Maxim Devaev
2022-07-27  4:26     ` Vicki Pfau
2022-07-28  8:59       ` Maxim Devaev
2022-07-28 18:11         ` Vicki Pfau
2022-07-31  8:14           ` Maxim Devaev
2022-08-03 23:32             ` Vicki Pfau
2022-08-08  1:57               ` Maxim Devaev
2022-09-08 23:57             ` Vicki Pfau
2022-09-13 10:06               ` Maxim Devaev
2022-10-22  0:28                 ` Vicki Pfau
2022-10-25  6:15                   ` Maxim Devaev
2022-07-28  8:08 ` Greg Kroah-Hartman [this message]
2022-07-28 18:07   ` [PATCH 1/2] USB: gadget: f_hid: Add Get-Feature report Vicki Pfau
2022-07-29  7:47     ` Greg Kroah-Hartman
2022-07-29 22:52       ` Vicki Pfau

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YuJD7Xp3Ue86Y+I+@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=balbi@kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mdevaev@gmail.com \
    --cc=vi@endrift.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.