diff options
Diffstat (limited to 'scripts/mod/file2alias.c')
-rw-r--r-- | scripts/mod/file2alias.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index e614ef689eee..78691d51a479 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -1109,6 +1109,22 @@ static int do_amba_entry(const char *filename, | |||
1109 | } | 1109 | } |
1110 | ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry); | 1110 | ADD_TO_DEVTABLE("amba", amba_id, do_amba_entry); |
1111 | 1111 | ||
1112 | /* | ||
1113 | * looks like: "mipscdmm:tN" | ||
1114 | * | ||
1115 | * N is exactly 2 digits, where each is an upper-case hex digit, or | ||
1116 | * a ? or [] pattern matching exactly one digit. | ||
1117 | */ | ||
1118 | static int do_mips_cdmm_entry(const char *filename, | ||
1119 | void *symval, char *alias) | ||
1120 | { | ||
1121 | DEF_FIELD(symval, mips_cdmm_device_id, type); | ||
1122 | |||
1123 | sprintf(alias, "mipscdmm:t%02X*", type); | ||
1124 | return 1; | ||
1125 | } | ||
1126 | ADD_TO_DEVTABLE("mipscdmm", mips_cdmm_device_id, do_mips_cdmm_entry); | ||
1127 | |||
1112 | /* LOOKS like cpu:type:x86,venVVVVfamFFFFmodMMMM:feature:*,FEAT,* | 1128 | /* LOOKS like cpu:type:x86,venVVVVfamFFFFmodMMMM:feature:*,FEAT,* |
1113 | * All fields are numbers. It would be nicer to use strings for vendor | 1129 | * All fields are numbers. It would be nicer to use strings for vendor |
1114 | * and feature, but getting those out of the build system here is too | 1130 | * and feature, but getting those out of the build system here is too |