Commit bb66fc67 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Michal Marek

kbuild: trivial - use tabs for code indent where possible

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
Signed-off-by: default avatarMichal Marek <mmarek@suse.cz>
parent 7eb6e340
...@@ -650,13 +650,11 @@ static int do_of_entry (const char *filename, void *symval, char *alias) ...@@ -650,13 +650,11 @@ static int do_of_entry (const char *filename, void *symval, char *alias)
DEF_FIELD_ADDR(symval, of_device_id, type); DEF_FIELD_ADDR(symval, of_device_id, type);
DEF_FIELD_ADDR(symval, of_device_id, compatible); DEF_FIELD_ADDR(symval, of_device_id, compatible);
len = sprintf (alias, "of:N%sT%s", len = sprintf(alias, "of:N%sT%s", (*name)[0] ? *name : "*",
(*name)[0] ? *name : "*",
(*type)[0] ? *type : "*"); (*type)[0] ? *type : "*");
if (compatible[0]) if (compatible[0])
sprintf (&alias[len], "%sC%s", sprintf(&alias[len], "%sC%s", (*type)[0] ? "*" : "",
(*type)[0] ? "*" : "",
*compatible); *compatible);
/* Replace all whitespace with underscores */ /* Replace all whitespace with underscores */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment