From 1a4de8768979bff85fe2ab158ff01115e7b0a072 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Fri, 11 Jan 2013 23:08:14 +0100 Subject: [PATCH] --- yaml --- r: 353984 b: refs/heads/master c: 7936095f945f62faf0da510f8305b6536b8f2c1b h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/staging/line6/pod.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index e2e1fdbf7d77..619f50458442 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 269edc8ee93c59820b2b54c2d010ab09c5e45cfe +refs/heads/master: 7936095f945f62faf0da510f8305b6536b8f2c1b diff --git a/trunk/drivers/staging/line6/pod.c b/trunk/drivers/staging/line6/pod.c index 1a1190604210..ba6fed4f3000 100644 --- a/trunk/drivers/staging/line6/pod.c +++ b/trunk/drivers/staging/line6/pod.c @@ -40,8 +40,8 @@ enum { }; enum { - POD_monitor_level = 0x04, - POD_system_invalid = 0x10000 + POD_MONITOR_LEVEL = 0x04, + POD_SYSTEM_INVALID = 0x10000 }; /* *INDENT-ON* */ @@ -170,7 +170,7 @@ void line6_pod_process_message(struct usb_line6_pod *pod) << 8) | ((int)buf[9] << 4) | (int)buf[10]; - if (buf[6] == POD_monitor_level) + if (buf[6] == POD_MONITOR_LEVEL) pod->monitor_level = value; break; } @@ -372,7 +372,7 @@ static int snd_pod_control_monitor_put(struct snd_kcontrol *kcontrol, pod->monitor_level = ucontrol->value.integer.value[0]; pod_set_system_param_int(pod, ucontrol->value.integer.value[0], - POD_monitor_level); + POD_MONITOR_LEVEL); return 1; } @@ -463,7 +463,7 @@ static int pod_try_init(struct usb_interface *interface, */ if (pod->line6.properties->capabilities & LINE6_BIT_CONTROL) { - pod->monitor_level = POD_system_invalid; + pod->monitor_level = POD_SYSTEM_INVALID; /* initiate startup procedure: */ pod_startup1(pod);