diff options
author | 2024-06-13 21:25:45 +0000 | |
---|---|---|
committer | 2024-06-13 21:56:23 +0000 | |
commit | 7583e835f79e74119ef9c96a4c7c4815b4547b0c (patch) | |
tree | 7a4266c6ae07010102d6e96f79a540fa31e9e485 /bpf/bpf.go | |
parent | 71825167e0b4a9f078daf5872ea148b43b86b298 (diff) |
Cleanup ImageInterface.SetImageVariation
This change modifies the interface method of
ImageInterface.SetImageVariation so that the image variation is set
directly at the caller image variation module, instead of passing the
pointer to set the image variation.
Test: m nothing
Change-Id: I8eadb5149365530243e19a8cd37eb49d335fbeef
Diffstat (limited to 'bpf/bpf.go')
-rw-r--r-- | bpf/bpf.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpf/bpf.go b/bpf/bpf.go index 2eb869ebe..ce00b5b24 100644 --- a/bpf/bpf.go +++ b/bpf/bpf.go @@ -131,7 +131,7 @@ func (bpf *bpf) ExtraImageVariations(ctx android.BaseModuleContext) []string { return nil } -func (bpf *bpf) SetImageVariation(ctx android.BaseModuleContext, variation string, module android.Module) { +func (bpf *bpf) SetImageVariation(ctx android.BaseModuleContext, variation string) { bpf.properties.VendorInternal = variation == "vendor" } |