[PATCH v3 0/7] perf config: Introduce default config key-value pairs arrays

2016-05-23 Thread Taeung Song
When initializing default perf config values, we currently use values of actual type(int, bool, char *, etc.) For example, If there isn't user config value at ~/.perfconfig for 'annotate.use_offset' config variable, default value for it is 'true' bool type value in perf like below. At ui/browser

[PATCH v3 2/7] perf config: Add 'colors' section default configs arrrays

2016-05-23 Thread Taeung Song
Actual variable for configs of 'colors' section is like below. (at ui/browser.c) static struct ui_browser_colorset { const char *name, *fg, *bg; int colorset; } ui_browser__colorsets[] = { { .colorset = HE_COLORSET_TOP, .name = "top",

[PATCH v3 5/7] perf config: Introduce perf_default_config_init()

2016-05-23 Thread Taeung Song
default_*_config_init() initialize actual variables with each default config value. (e.g. default_colors_config_init() for 'colors' section) But I suggest using perf_default_config_init() that call all default_*_config_init() and this function would be called at the very beginning of main() on per

[PATCH v3 6/7] perf config: Add 'annotate' section default configs arrrays

2016-05-23 Thread Taeung Song
Actual variable for configs of 'annotate' section is like below. (at ui/browsers/annoate.c) static struct annotate_browser_opt { bool hide_src_code, use_offset, jump_arrows, show_linenr, show_nr_jumps, show_total_period; } annotate

[PATCH v3 1/7] perf config: Introduce default_config_item for default config key-value pairs

2016-05-23 Thread Taeung Song
When initializing default perf config values, we currently use values of actual type(int, bool, char *, etc.). For example, If there isn't user config value at ~/.perfconfig for 'annotate.use_offset' config variable, default value for it is 'true' bool type value in perf like below. At ui/browser

[PATCH v2 05/10] drm/rockchip: analogix_dp: add rk3399 eDP support

2016-05-23 Thread Yakir Yang
RK3399 and RK3288 shared the same eDP IP controller, only some light difference with VOP configure and GRF configure. Signed-off-by: Yakir Yang --- Changes in v2: - rebase with drm-next, fix some conflicts .../bindings/display/bridge/analogix_dp.txt| 1 + .../display/rockchip/analogix_

<    4   5   6   7   8   9