From: Jeffrey <jeffrey.br...@unisys.com>

Changed the static ulong Poll_jiffies to poll_jiffies using
refactor and rename
Poll_jiffies => poll_jiffies

Signed-off-by: Jeffrey Brown <jeffrey.br...@unisys.com>
---
 .../staging/unisys/visorchipset/visorchipset_main.c  | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c 
b/drivers/staging/unisys/visorchipset/visorchipset_main.c
index fef28c0..6fe2495 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset_main.c
+++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c
@@ -50,7 +50,7 @@
 * message, we switch back to fast polling mode.
 */
 #define MIN_IDLE_SECONDS 10
-static ulong Poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
+static ulong poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
 static ulong Most_recent_message_jiffies;      /* when we got our last
                                                 * controlvm message */
 static inline char *
@@ -2038,19 +2038,19 @@ Away:
                * processed our last controlvm message; slow down the
                * polling
                */
-               if (Poll_jiffies != POLLJIFFIES_CONTROLVMCHANNEL_SLOW) {
+               if (poll_jiffies != POLLJIFFIES_CONTROLVMCHANNEL_SLOW) {
                        LOGINF("switched to slow controlvm polling");
-                       Poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_SLOW;
+                       poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_SLOW;
                }
        } else {
-               if (Poll_jiffies != POLLJIFFIES_CONTROLVMCHANNEL_FAST) {
-                       Poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
+               if (poll_jiffies != POLLJIFFIES_CONTROLVMCHANNEL_FAST) {
+                       poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
                        LOGINF("switched to fast controlvm polling");
                }
        }
 
        queue_delayed_work(Periodic_controlvm_workqueue,
-                          &Periodic_controlvm_work, Poll_jiffies);
+                          &Periodic_controlvm_work, poll_jiffies);
 }
 
 static void
@@ -2160,10 +2160,10 @@ setup_crash_devices_work_queue(struct work_struct *work)
 
 Away:
 
-       Poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_SLOW;
+       poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_SLOW;
 
        queue_delayed_work(Periodic_controlvm_workqueue,
-                          &Periodic_controlvm_work, Poll_jiffies);
+                          &Periodic_controlvm_work, poll_jiffies);
 }
 
 static void
@@ -2467,9 +2467,9 @@ visorchipset_init(void)
                        goto Away;
                }
                Most_recent_message_jiffies = jiffies;
-               Poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
+               poll_jiffies = POLLJIFFIES_CONTROLVMCHANNEL_FAST;
                rc = queue_delayed_work(Periodic_controlvm_workqueue,
-                                       &Periodic_controlvm_work, Poll_jiffies);
+                                       &Periodic_controlvm_work, poll_jiffies);
                if (rc < 0) {
                        
ERRDRV("queue_delayed_work(Periodic_controlvm_workqueue, 
&Periodic_controlvm_work, Poll_jiffies): error (status=%d)\n", rc);
                        POSTCODE_LINUX_2(QUEUE_DELAYED_WORK_PC,
-- 
1.8.4

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to