blob: 37e971d1cdda8743a2226e74f3ded34bac1e4764 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library zircon.hw.usb.hub;
using zx;
[Packed, repr="C"]
struct UsbHubDescriptor {
uint8 bDescLength;
uint8 bDescriptorType;
uint8 bNbrPorts;
uint16 wHubCharacteristics;
uint8 bPowerOn2PwrGood;
uint8 bHubContrCurrent;
// Variable length union below, which we are ignoring here for now.
};