From: Joel Holdsworth Date: Sun, 4 Mar 2012 14:50:28 +0000 (+0000) Subject: Renamed fx2lafw_run to fx2lafw_poll X-Git-Tag: sigrok-firmware-fx2lafw-0.1.0~53 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=28d52f414aea134690fba92d62b40607e55550bf;hp=2846a114f69c29a64dc7e6ae9d12195f8c4c18ab;p=sigrok-firmware-fx2lafw.git Renamed fx2lafw_run to fx2lafw_poll --- diff --git a/fx2lafw.c b/fx2lafw.c index 574e0910..034d5ba4 100644 --- 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(); diff --git a/hw/cwav-usbeeax/main.c b/hw/cwav-usbeeax/main.c index 1c398f5b..941bdd08 100644 --- a/hw/cwav-usbeeax/main.c +++ b/hw/cwav-usbeeax/main.c @@ -26,5 +26,5 @@ void main(void) fx2lafw_init(); while (1) - fx2lafw_run(); + fx2lafw_poll(); } diff --git a/hw/saleae-logic/main.c b/hw/saleae-logic/main.c index fecf950b..18e793ff 100644 --- a/hw/saleae-logic/main.c +++ b/hw/saleae-logic/main.c @@ -25,5 +25,5 @@ void main(void) fx2lafw_init(); while (1) - fx2lafw_run(); + fx2lafw_poll(); } diff --git a/include/fx2lafw.h b/include/fx2lafw.h index 71f181f4..7d5877dd 100644 --- a/include/fx2lafw.h +++ b/include/fx2lafw.h @@ -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);