#include "../cache.h" #include "../progress.h" #include "../libslang.h" #include "../ui.h" #include "tui.h" #include "../browser.h" static void tui_progress__update(struct ui_progress *p) { int bar, y; /* * FIXME: We should have a per UI backend way of showing progress, * stdio will just show a percentage as NN%, etc. */ if (use_browser <= 0) return; if (p->total == 0) return; ui__refresh_dimensions(false); pthread_mutex_lock(&ui__lock); y = SLtt_Screen_Rows / 2 - 2; SLsmg_set_color(0); SLsmg_draw_box(y, 0, 3, SLtt_Screen_Cols); SLsmg_gotorc(y++, 1); SLsmg_write_string((char *)p->title); SLsmg_fill_region(y, 1, 1, SLtt_Screen_Cols - 2, ' '); SLsmg_set_color(HE_COLORSET_SELECTED); bar = ((SLtt_Screen_Cols - 2) * p->curr) / p->total; SLsmg_fill_region(y, 1, 1, bar, ' '); SLsmg_refresh(); pthread_mutex_unlock(&ui__lock); } static void tui_progress__finish(void) { int y; if (use_browser <= 0) return; ui__refresh_dimensions(false); pthread_mutex_lock(&ui__lock); y = SLtt_Screen_Rows / 2 - 2; SLsmg_set_color(0); SLsmg_fill_region(y, 0, 3, SLtt_Screen_Cols, ' '); SLsmg_refresh(); pthread_mutex_unlock(&ui__lock); } static struct ui_progress_ops tui_progress__ops = { .update = tui_progress__update, .finish = tui_progress__finish, }; void tui_progress__init(void) { ui_progress__ops = &tui_progress__ops; } summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/hisilicon
href='/cgit.cgi/linux/net-next.git/commit/drivers/clk/meson?id=1f501d632ed2f719d36c62ba1f8a68de0200391a'>meson
diff options
AgeCommit message (Expand)AuthorFilesLines
context:
space:
mode:
authorPaul Gortmaker <paul.gortmaker@windriver.com>2016-07-04 17:12:12 -0400
committerMichael Turquette <mturquette@baylibre.com>2016-07-06 15:20:26 -0700
commit1f501d632ed2f719d36c62ba1f8a68de0200391a (patch)
tree314ad1b2d0a0a4339b2d128469168ebe2956fe04 /drivers/clk/meson
parenta718ce38d4cdcd1377d5b2e40b10acd80e63af29 (diff)
clk: meson: make gxbb explicitly non-modular
The Kconfig currently controlling compilation of this code is: drivers/clk/meson/Kconfig:config COMMON_CLK_GXBB drivers/clk/meson/Kconfig: bool ...meaning that it currently is not being built as a module by anyone. Lets remove the modular code that is essentially orphaned, so that when reading the driver there is no doubt it is builtin-only. Since module_init translates to device_initcall in the non-modular case, the init ordering remains unchanged with this commit. Also note that MODULE_DEVICE_TABLE and ALIAS are no-op for non-modules. We also delete the MODULE_LICENSE tag etc. since all that information was (or is now) contained at the top of the file in the comments. Cc: Stephen Boyd <sboyd@codeaurora.org> Cc: Carlo Caione <carlo@caione.org> Cc: Kevin Hilman <khilman@baylibre.com> Cc: linux-clk@vger.kernel.org Cc: linux-amlogic@lists.infradead.org Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com> Link: lkml.kernel.org/r/20160704211220.5685-3-paul.gortmaker@windriver.com
Diffstat (limited to 'drivers/clk/meson')