greybus: es1: fix build-time cport constraint
The CPort count of es1 is now defined by CPORT_COUNT. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
This commit is contained in:
parent
1a58a3befa
commit
239adcf6bd
|
@ -556,7 +556,7 @@ static int ap_probe(struct usb_interface *interface,
|
|||
int i;
|
||||
|
||||
/* We need to fit a CPort ID in one byte of a message header */
|
||||
BUILD_BUG_ON(CPORT_ID_MAX > U8_MAX);
|
||||
BUILD_BUG_ON(CPORT_COUNT > U8_MAX + 1);
|
||||
|
||||
udev = usb_get_dev(interface_to_usbdev(interface));
|
||||
|
||||
|
|
Loading…
Reference in New Issue