bus/usb/ehci: Define GRUB_EHCI_TOGGLE as grub_uint32_t
The Coverity indicates that GRUB_EHCI_TOGGLE is an int that contains a negative value and we are using it for the variable token which is grub_uint32_t. To remedy this we can cast the definition to grub_uint32_t. Fixes: CID 473851 Signed-off-by: Alec Brown <alec.r.brown@oracle.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
f8795cde21
commit
9907d9c272
@ -218,7 +218,7 @@ enum
|
|||||||
|
|
||||||
#define GRUB_EHCI_TERMINATE (1<<0)
|
#define GRUB_EHCI_TERMINATE (1<<0)
|
||||||
|
|
||||||
#define GRUB_EHCI_TOGGLE (1<<31)
|
#define GRUB_EHCI_TOGGLE ((grub_uint32_t) 1<<31)
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user