src/cable: rename bus/device to bus_addr/device_addr

This commit is contained in:
Gwenhael Goavec-Merou 2022-10-15 16:19:24 +02:00
parent 48126cf84c
commit 9e5fcdbe0d
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ struct cable_t {
communication_type type; /*! see enum communication_type */
int vid; /*! Vendor ID */
int pid; /*! Product ID */
int bus; /*! bus number (must be set to -1: user defined */
int device; /*! device number (must be set -1: user defined */
int bus_addr; /*! bus number (must be set to -1: user defined */
int device_addr; /*! device number (must be set -1: user defined */
mpsse_bit_config config; /*! FTDI specific configurations */
};