mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
scripts/kallsyms: rename build_initial_tok_table()
Except for the function build_initial_tok_table(), no token abbreviation is used elsewhere. $ cat scripts/kallsyms.c | grep tok | wc -l 33 $ cat scripts/kallsyms.c | grep token | wc -l 31 Here, it would be clearer to use the full name. Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com> Reviewed-by: Petr Mladek <pmladek@suse.com> Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
This commit is contained in:
committed by
Luis Chamberlain
parent
45af1d7aae
commit
fcdf7197cf
@@ -573,7 +573,7 @@ static void forget_symbol(const unsigned char *symbol, int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* do the initial token count */
|
/* do the initial token count */
|
||||||
static void build_initial_tok_table(void)
|
static void build_initial_token_table(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
@@ -698,7 +698,7 @@ static void insert_real_symbols_in_table(void)
|
|||||||
|
|
||||||
static void optimize_token_table(void)
|
static void optimize_token_table(void)
|
||||||
{
|
{
|
||||||
build_initial_tok_table();
|
build_initial_token_table();
|
||||||
|
|
||||||
insert_real_symbols_in_table();
|
insert_real_symbols_in_table();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user