summaryrefslogtreecommitdiff
path: root/android/aconfig_providers.go
diff options
context:
space:
mode:
Diffstat (limited to 'android/aconfig_providers.go')
-rw-r--r--android/aconfig_providers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/aconfig_providers.go b/android/aconfig_providers.go
index 7185a8941..9c71d927d 100644
--- a/android/aconfig_providers.go
+++ b/android/aconfig_providers.go
@@ -248,7 +248,7 @@ func getContainer(m Module) string {
// Please only access the module's internal data through providers.
func getContainerUsingProviders(ctx OtherModuleProviderContext, m Module) string {
container := "system"
- commonInfo, _ := OtherModuleProvider(ctx, m, CommonModuleInfoKey)
+ commonInfo, _ := OtherModuleProvider(ctx, m, CommonModuleInfoProvider)
if commonInfo.Vendor || commonInfo.Proprietary || commonInfo.SocSpecific {
container = "vendor"
} else if commonInfo.ProductSpecific {