xhci: Remove unnecessary parentheses

Remove unnecessary parentheses in declaration of
'trbs' pointed out by gcc8.

Change-Id: I87d043866929d1a7f56ce97aa3667c91eeed52e0
This commit is contained in:
Murai Takashi 2018-05-08 06:38:54 +09:00 committed by Jérôme Duval
parent e003057f5d
commit 96ef28f853
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ typedef struct xhci_device {
enum xhci_state state;
area_id trb_area;
phys_addr_t trb_addr;
struct xhci_trb (*trbs); // [XHCI_MAX_ENDPOINTS - 1][XHCI_MAX_TRANSFERS]
struct xhci_trb *trbs; // [XHCI_MAX_ENDPOINTS - 1][XHCI_MAX_TRANSFERS]
area_id input_ctx_area;
phys_addr_t input_ctx_addr;