summaryrefslogtreecommitdiff
path: root/usb
diff options
context:
space:
mode:
authorPat Tjin <pattjin@google.com>2021-05-19 21:37:18 -0700
committerAaron Ding <aaronding@google.com>2021-05-20 17:54:35 +0800
commit89841bf57a1bbf6f5564d483c62938c0bb410c4c (patch)
treeb7229b06b844ace2b20d16dcb01b986c7624480f /usb
parent6ec6628fc50282d8018c99cac1f2b81aa7e3b503 (diff)
downloadgs201-89841bf57a1bbf6f5564d483c62938c0bb410c4c.tar.gz
s/gs101/gs201
do a global substitution Bug: 186836335 Signed-off-by: Pat Tjin <pattjin@google.com> Change-Id: Ic79e8983d04615be7da70ebb2b5092aae5178495
Diffstat (limited to 'usb')
-rw-r--r--usb/Android.bp12
-rw-r--r--usb/Usb.cpp2
-rw-r--r--usb/UsbGadget.cpp2
-rw-r--r--usb/android.hardware.usb.gadget@1.2-service.gs201.xml (renamed from usb/android.hardware.usb.gadget@1.2-service.gs101.xml)0
-rw-r--r--usb/android.hardware.usb@1.3-service.gs201.rc (renamed from usb/android.hardware.usb@1.3-service.gs101.rc)2
-rw-r--r--usb/android.hardware.usb@1.3-service.gs201.xml (renamed from usb/android.hardware.usb@1.3-service.gs101.xml)0
-rw-r--r--usb/service.cpp2
7 files changed, 10 insertions, 10 deletions
diff --git a/usb/Android.bp b/usb/Android.bp
index 9e37c7f..b1bbacc 100644
--- a/usb/Android.bp
+++ b/usb/Android.bp
@@ -16,21 +16,21 @@
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_gs101_license"
+ // all of the 'license_kinds' from "//device/google/gs201:device_google_gs201_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: [
- "//device/google/gs201:device_google_gs101_license",
+ "//device/google/gs201:device_google_gs201_license",
],
}
cc_binary {
- name: "android.hardware.usb@1.3-service.gs101",
+ name: "android.hardware.usb@1.3-service.gs201",
relative_install_path: "hw",
- init_rc: ["android.hardware.usb@1.3-service.gs101.rc"],
+ init_rc: ["android.hardware.usb@1.3-service.gs201.rc"],
vintf_fragments: [
- "android.hardware.usb@1.3-service.gs101.xml",
- "android.hardware.usb.gadget@1.2-service.gs101.xml",
+ "android.hardware.usb@1.3-service.gs201.xml",
+ "android.hardware.usb.gadget@1.2-service.gs201.xml",
],
srcs: ["service.cpp", "Usb.cpp", "UsbGadget.cpp"],
cflags: ["-Wall", "-Werror"],
diff --git a/usb/Usb.cpp b/usb/Usb.cpp
index 3270c46..3cb51c3 100644
--- a/usb/Usb.cpp
+++ b/usb/Usb.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#define LOG_TAG "android.hardware.usb@1.3-service.gs101"
+#define LOG_TAG "android.hardware.usb@1.3-service.gs201"
#include <android-base/logging.h>
#include <android-base/properties.h>
diff --git a/usb/UsbGadget.cpp b/usb/UsbGadget.cpp
index efbf778..13426b7 100644
--- a/usb/UsbGadget.cpp
+++ b/usb/UsbGadget.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#define LOG_TAG "android.hardware.usb.gadget@1.2-service.gs101"
+#define LOG_TAG "android.hardware.usb.gadget@1.2-service.gs201"
#include "UsbGadget.h"
#include <dirent.h>
diff --git a/usb/android.hardware.usb.gadget@1.2-service.gs101.xml b/usb/android.hardware.usb.gadget@1.2-service.gs201.xml
index 8557f6f..8557f6f 100644
--- a/usb/android.hardware.usb.gadget@1.2-service.gs101.xml
+++ b/usb/android.hardware.usb.gadget@1.2-service.gs201.xml
diff --git a/usb/android.hardware.usb@1.3-service.gs101.rc b/usb/android.hardware.usb@1.3-service.gs201.rc
index 615ae7e..8a66f58 100644
--- a/usb/android.hardware.usb@1.3-service.gs101.rc
+++ b/usb/android.hardware.usb@1.3-service.gs201.rc
@@ -1,4 +1,4 @@
-service vendor.usb-hal-1-3 /vendor/bin/hw/android.hardware.usb@1.3-service.gs101
+service vendor.usb-hal-1-3 /vendor/bin/hw/android.hardware.usb@1.3-service.gs201
class hal
user system
group system shell mtp
diff --git a/usb/android.hardware.usb@1.3-service.gs101.xml b/usb/android.hardware.usb@1.3-service.gs201.xml
index cd54268..cd54268 100644
--- a/usb/android.hardware.usb@1.3-service.gs101.xml
+++ b/usb/android.hardware.usb@1.3-service.gs201.xml
diff --git a/usb/service.cpp b/usb/service.cpp
index a4a30d2..a613c36 100644
--- a/usb/service.cpp
+++ b/usb/service.cpp
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-#define LOG_TAG "android.hardware.usb@1.3-service.gs101"
+#define LOG_TAG "android.hardware.usb@1.3-service.gs201"
#include <hidl/HidlTransportSupport.h>
#include "Usb.h"