mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
staging: r8188eu: rewrite usb vendor request defines
Replace the numeric values with USB constants to make their meaning clearer. Acked-by: Phillip Potter <phil@philpotter.co.uk> Acked-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Martin Kaiser <martin@kaiser.cx> Link: https://lore.kernel.org/r/20210821164859.4351-4-martin@kaiser.cx Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
805ac0da01
commit
f410923ad5
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@
|
||||||
#include "drv_types.h"
|
#include "drv_types.h"
|
||||||
#include "osdep_intf.h"
|
#include "osdep_intf.h"
|
||||||
|
|
||||||
#define REALTEK_USB_VENQT_READ 0xC0
|
#define REALTEK_USB_VENQT_READ (USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE)
|
||||||
#define REALTEK_USB_VENQT_WRITE 0x40
|
#define REALTEK_USB_VENQT_WRITE (USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE)
|
||||||
#define REALTEK_USB_VENQT_CMD_REQ 0x05
|
#define REALTEK_USB_VENQT_CMD_REQ 0x05
|
||||||
#define REALTEK_USB_VENQT_CMD_IDX 0x00
|
#define REALTEK_USB_VENQT_CMD_IDX 0x00
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue