diff options
Diffstat (limited to 'scripts/mod/file2alias.c')
-rw-r--r-- | scripts/mod/file2alias.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 52fd54a8fe39..7be43697ff84 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -1352,6 +1352,19 @@ static int do_tbsvc_entry(const char *filename, void *symval, char *alias) | |||
1352 | } | 1352 | } |
1353 | ADD_TO_DEVTABLE("tbsvc", tb_service_id, do_tbsvc_entry); | 1353 | ADD_TO_DEVTABLE("tbsvc", tb_service_id, do_tbsvc_entry); |
1354 | 1354 | ||
1355 | /* Looks like: typec:idNmN */ | ||
1356 | static int do_typec_entry(const char *filename, void *symval, char *alias) | ||
1357 | { | ||
1358 | DEF_FIELD(symval, typec_device_id, svid); | ||
1359 | DEF_FIELD(symval, typec_device_id, mode); | ||
1360 | |||
1361 | sprintf(alias, "typec:id%04X", svid); | ||
1362 | ADD(alias, "m", mode != TYPEC_ANY_MODE, mode); | ||
1363 | |||
1364 | return 1; | ||
1365 | } | ||
1366 | ADD_TO_DEVTABLE("typec", typec_device_id, do_typec_entry); | ||
1367 | |||
1355 | /* Does namelen bytes of name exactly match the symbol? */ | 1368 | /* Does namelen bytes of name exactly match the symbol? */ |
1356 | static bool sym_is(const char *name, unsigned namelen, const char *symbol) | 1369 | static bool sym_is(const char *name, unsigned namelen, const char *symbol) |
1357 | { | 1370 | { |