This commit is contained in:
Kyle Lemons
2012-03-26 22:51:47 -07:00
parent 86ebf94158
commit 2da2ce1e17
5 changed files with 12 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ func (v Vendor) String() string {
}
type Product struct {
Name string
Name string
Interface map[usb.ID]string
}
@@ -29,7 +29,7 @@ func (p Product) String() string {
}
type Class struct {
Name string
Name string
SubClass map[uint8]*SubClass
}
@@ -38,7 +38,7 @@ func (c Class) String() string {
}
type SubClass struct {
Name string
Name string
Protocol map[uint8]string
}