]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
Renamed fx2lafw_run to fx2lafw_poll
authorJoel Holdsworth <redacted>
Sun, 4 Mar 2012 14:50:28 +0000 (14:50 +0000)
committerJoel Holdsworth <redacted>
Sun, 4 Mar 2012 14:50:28 +0000 (14:50 +0000)
fx2lafw.c
hw/cwav-usbeeax/main.c
hw/saleae-logic/main.c
include/fx2lafw.h

index 574e09109b1e7bcc86ce16e6fa1b3619e63e5fb5..034d5ba4b12fe7a17859ce409e18d0802df57dec 100644 (file)
--- a/fx2lafw.c
+++ b/fx2lafw.c
@@ -234,7 +234,7 @@ void fx2lafw_init(void)
        gpif_init_la();
 }
 
-void fx2lafw_run(void)
+void fx2lafw_poll(void)
 {
        if (got_sud) {
                handle_setupdata();
index 1c398f5b2784113befbf28b5cb547ae4857cb133..941bdd08a62420f288b22704af7ac83c94af92f6 100644 (file)
@@ -26,5 +26,5 @@ void main(void)
        fx2lafw_init();
 
        while (1)
-               fx2lafw_run();
+               fx2lafw_poll();
 }
index fecf950bd25810a3e121b67e66d66155bee32167..18e793ff0597463961794c61d942229780f79c69 100644 (file)
@@ -25,5 +25,5 @@ void main(void)
        fx2lafw_init();
 
        while (1)
-               fx2lafw_run();
+               fx2lafw_poll();
 }
index 71f181f493b3c09ec7ad633541a8d2cf4a700d61..7d5877dd35a987193559e5fdb13eeedf7a71b337 100644 (file)
@@ -31,4 +31,4 @@ void fx2lafw_init(void);
  * Performs a single iteration of the main loop code which is common
  * to all fx2lafw devices.
  */
-void fx2lafw_run(void);
+void fx2lafw_poll(void);