mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 15:13:44 -04:00
greybus: fix bundle-id match macros
The matching flags were renamed over a year ago but the so far unused id-macros were never updated. Also rename the GREYBUS_ID_MATCH_DEVICE mask to use the common GREYBUS_ID_MATCH-prefix. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
55510843c1
commit
358e9400f4
@@ -42,16 +42,16 @@
|
||||
#define GREYBUS_VERSION_MAJOR 0x00
|
||||
#define GREYBUS_VERSION_MINOR 0x01
|
||||
|
||||
#define GREYBUS_DEVICE_ID_MATCH_DEVICE \
|
||||
(GREYBUS_DEVICE_ID_MATCH_VENDOR | GREYBUS_DEVICE_ID_MATCH_PRODUCT)
|
||||
#define GREYBUS_ID_MATCH_DEVICE \
|
||||
(GREYBUS_ID_MATCH_VENDOR | GREYBUS_ID_MATCH_PRODUCT)
|
||||
|
||||
#define GREYBUS_DEVICE(v, p) \
|
||||
.match_flags = GREYBUS_DEVICE_ID_MATCH_DEVICE, \
|
||||
.match_flags = GREYBUS_ID_MATCH_DEVICE, \
|
||||
.vendor = (v), \
|
||||
.product = (p),
|
||||
|
||||
#define GREYBUS_DEVICE_SERIAL(s) \
|
||||
.match_flags = GREYBUS_DEVICE_ID_MATCH_SERIAL, \
|
||||
.match_flags = GREYBUS_ID_MATCH_SERIAL, \
|
||||
.serial_number = (s),
|
||||
|
||||
/* Maximum number of CPorts */
|
||||
|
||||
Reference in New Issue
Block a user