|
@@ -111,16 +111,16 @@ static ssize_t gb_audio_module_pid_show(
|
|
|
static struct gb_audio_manager_module_attribute gb_audio_module_pid_attribute =
|
|
|
__ATTR(pid, 0664, gb_audio_module_pid_show, NULL);
|
|
|
|
|
|
-static ssize_t gb_audio_module_cport_show(
|
|
|
+static ssize_t gb_audio_module_intf_id_show(
|
|
|
struct gb_audio_manager_module *module,
|
|
|
struct gb_audio_manager_module_attribute *attr, char *buf)
|
|
|
{
|
|
|
- return sprintf(buf, "%d", module->desc.cport);
|
|
|
+ return sprintf(buf, "%d", module->desc.intf_id);
|
|
|
}
|
|
|
|
|
|
static struct gb_audio_manager_module_attribute
|
|
|
- gb_audio_module_cport_attribute =
|
|
|
- __ATTR(cport, 0664, gb_audio_module_cport_show, NULL);
|
|
|
+ gb_audio_module_intf_id_attribute =
|
|
|
+ __ATTR(intf_id, 0664, gb_audio_module_intf_id_show, NULL);
|
|
|
|
|
|
static ssize_t gb_audio_module_ip_devices_show(
|
|
|
struct gb_audio_manager_module *module,
|
|
@@ -149,7 +149,7 @@ static struct attribute *gb_audio_module_default_attrs[] = {
|
|
|
&gb_audio_module_slot_attribute.attr,
|
|
|
&gb_audio_module_vid_attribute.attr,
|
|
|
&gb_audio_module_pid_attribute.attr,
|
|
|
- &gb_audio_module_cport_attribute.attr,
|
|
|
+ &gb_audio_module_intf_id_attribute.attr,
|
|
|
&gb_audio_module_ip_devices_attribute.attr,
|
|
|
&gb_audio_module_op_devices_attribute.attr,
|
|
|
NULL, /* need to NULL terminate the list of attributes */
|
|
@@ -167,7 +167,7 @@ static void send_add_uevent(struct gb_audio_manager_module *module)
|
|
|
char slot_string[64];
|
|
|
char vid_string[64];
|
|
|
char pid_string[64];
|
|
|
- char cport_string[64];
|
|
|
+ char intf_id_string[64];
|
|
|
char ip_devices_string[64];
|
|
|
char op_devices_string[64];
|
|
|
|
|
@@ -176,7 +176,7 @@ static void send_add_uevent(struct gb_audio_manager_module *module)
|
|
|
slot_string,
|
|
|
vid_string,
|
|
|
pid_string,
|
|
|
- cport_string,
|
|
|
+ intf_id_string,
|
|
|
ip_devices_string,
|
|
|
op_devices_string,
|
|
|
NULL
|
|
@@ -186,7 +186,7 @@ static void send_add_uevent(struct gb_audio_manager_module *module)
|
|
|
snprintf(slot_string, 64, "SLOT=%d", module->desc.slot);
|
|
|
snprintf(vid_string, 64, "VID=%d", module->desc.vid);
|
|
|
snprintf(pid_string, 64, "PID=%d", module->desc.pid);
|
|
|
- snprintf(cport_string, 64, "CPORT=%d", module->desc.cport);
|
|
|
+ snprintf(intf_id_string, 64, "INTF_ID=%d", module->desc.intf_id);
|
|
|
snprintf(ip_devices_string, 64, "I/P DEVICES=0x%X",
|
|
|
module->desc.ip_devices);
|
|
|
snprintf(op_devices_string, 64, "O/P DEVICES=0x%X",
|
|
@@ -246,13 +246,13 @@ int gb_audio_manager_module_create(
|
|
|
|
|
|
void gb_audio_manager_module_dump(struct gb_audio_manager_module *module)
|
|
|
{
|
|
|
- pr_info("audio module #%d name=%s slot=%d vid=%d pid=%d cport=%d i/p devices=0x%X o/p devices=0x%X\n",
|
|
|
+ pr_info("audio module #%d name=%s slot=%d vid=%d pid=%d intf_id=%d i/p devices=0x%X o/p devices=0x%X\n",
|
|
|
module->id,
|
|
|
module->desc.name,
|
|
|
module->desc.slot,
|
|
|
module->desc.vid,
|
|
|
module->desc.pid,
|
|
|
- module->desc.cport,
|
|
|
+ module->desc.intf_id,
|
|
|
module->desc.ip_devices,
|
|
|
module->desc.op_devices);
|
|
|
}
|