Create device Ripcurrent on Zuma platform

s/cloudripper/ripcurrent
s/gs201/zuma
s/pantah/ripcurrent

Bug: 229340586
Change-Id: Ic5dffbbfadbb1eb8479587b95222801426bba35e
Signed-off-by: Aaron Ding <aaronding@google.com>
This commit is contained in:
Aaron Ding 2022-04-15 18:52:04 +08:00
parent d88f9a90bd
commit 66befd88e3
50 changed files with 179 additions and 179 deletions

View file

@ -22,16 +22,16 @@ soong_namespace {
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "//device/google/gs201:device_google_gs201_license"
// all of the 'license_kinds' from "//device/google/zuma:device_google_zuma_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: [
"//device/google/gs201:device_google_gs201_license",
"//device/google/zuma:device_google_zuma_license",
],
}
cc_library {
name: "android.hardware.power.stats-impl.gs201",
name: "android.hardware.power.stats-impl.zuma",
vendor_available: true,
export_include_dirs: ["include"],
defaults: ["powerstats_pixel_defaults"],

View file

@ -15,7 +15,7 @@
*/
#include <PowerStatsAidl.h>
#include <Gs201CommonDataProviders.h>
#include <ZumaCommonDataProviders.h>
#include <AocStateResidencyDataProvider.h>
#include <DevfreqStateResidencyDataProvider.h>
#include <DvfsStateResidencyDataProvider.h>
@ -638,7 +638,7 @@ void addPixelStateResidencyDataProvider(std::shared_ptr<PowerStats> p) {
p->addStateResidencyDataProvider(std::move(pixelSdp));
}
void addGs201CommonDataProviders(std::shared_ptr<PowerStats> p) {
void addZumaCommonDataProviders(std::shared_ptr<PowerStats> p) {
setEnergyMeter(p);
addPixelStateResidencyDataProvider(p);

View file

@ -20,6 +20,6 @@
using aidl::android::hardware::power::stats::PowerStats;
void addGs201CommonDataProviders(std::shared_ptr<PowerStats> p);
void addZumaCommonDataProviders(std::shared_ptr<PowerStats> p);
void addNFC(std::shared_ptr<PowerStats> p, const std::string& path);