Deleted Added
sdiff udiff text old ( 279544 ) new ( 292683 )
full compact
1/* $FreeBSD: head/sys/dev/usb/controller/xhci.h 279544 2015-03-02 20:42:06Z hselasky $ */
2
3/*-
4 * Copyright (c) 2010 Hans Petter Selasky. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright

--- 450 unchanged lines hidden (view full) ---

460 union xhci_hub_desc sc_hub_desc;
461
462 struct cv sc_cmd_cv;
463 struct sx sc_cmd_sx;
464
465 struct usb_device *sc_devices[XHCI_MAX_DEVICES];
466 struct resource *sc_io_res;
467 struct resource *sc_irq_res;
468
469 void *sc_intr_hdl;
470 bus_size_t sc_io_size;
471 bus_space_tag_t sc_io_tag;
472 bus_space_handle_t sc_io_hdl;
473 /* last pending command address */
474 uint64_t sc_cmd_addr;
475 /* result of command */

--- 55 unchanged lines hidden ---