Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33e87b8a authored by Steven Moreland's avatar Steven Moreland
Browse files

Remove HIDL_GENERATED from things written by hand.

find . -name "*.h" -exec sed -i 's/HIDL_GENERATED_\(.*\)_H_/\U\1_H/g' {}
+

They now match what would be generated by -Lc++-impl. This prevents
confusion over whether or not the files are autogenerated.

Test: pass
Change-Id: I2c9d7887f6d6bdaa19a5c4bfcf02ee3d1dbc81d1
parent 403161ab
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
#ifndef HIDL_GENERATED_android_hardware_boot_V1_0_BootControl_H_
#define HIDL_GENERATED_android_hardware_boot_V1_0_BootControl_H_
#ifndef ANDROID_HARDWARE_BOOT_V1_0_BOOTCONTROL_H
#define ANDROID_HARDWARE_BOOT_V1_0_BOOTCONTROL_H

#include <android/hardware/boot/1.0/IBootControl.h>
#include <hidl/Status.h>
@@ -43,4 +43,4 @@ extern "C" IBootControl* HIDL_FETCH_IBootControl(const char* name);
}  // namespace hardware
}  // namespace android

#endif  // HIDL_GENERATED_android_hardware_boot_V1_0_BootControl_H_
#endif  // ANDROID_HARDWARE_BOOT_V1_0_BOOTCONTROL_H
+3 −3
Original line number Diff line number Diff line
#ifndef HIDL_GENERATED_android_hardware_nfc_V1_0_Nfc_H_
#define HIDL_GENERATED_android_hardware_nfc_V1_0_Nfc_H_
#ifndef ANDROID_HARDWARE_NFC_V1_0_NFC_H
#define ANDROID_HARDWARE_NFC_V1_0_NFC_H

#include <android/hardware/nfc/1.0/INfc.h>
#include <hidl/Status.h>
@@ -56,4 +56,4 @@ extern "C" INfc* HIDL_FETCH_INfc(const char* name);
}  // namespace hardware
}  // namespace android

#endif  // HIDL_GENERATED_android_hardware_nfc_V1_0_Nfc_H_
#endif  // ANDROID_HARDWARE_NFC_V1_0_NFC_H
+3 −3
Original line number Diff line number Diff line
#ifndef HIDL_GENERATED_android_hardware_tests_bar_V1_0_Bar_H_
#define HIDL_GENERATED_android_hardware_tests_bar_V1_0_Bar_H_
#ifndef ANDROID_HARDWARE_TESTS_BAR_V1_0_BAR_H
#define ANDROID_HARDWARE_TESTS_BAR_V1_0_BAR_H

#include <android/hardware/tests/bar/1.0/IBar.h>
#include <hidl/Status.h>
@@ -79,4 +79,4 @@ extern "C" IBar* HIDL_FETCH_IBar(const char* name);
}  // namespace hardware
}  // namespace android

#endif  // HIDL_GENERATED_android_hardware_tests_bar_V1_0_Bar_H_
#endif  // ANDROID_HARDWARE_TESTS_BAR_V1_0_BAR_H
+3 −3
Original line number Diff line number Diff line
#ifndef HIDL_GENERATED_android_hardware_tests_bar_V1_0_ImportTypes_H_
#define HIDL_GENERATED_android_hardware_tests_bar_V1_0_ImportTypes_H_
#ifndef ANDROID_HARDWARE_TESTS_BAR_V1_0_IMPORTTYPES_H
#define ANDROID_HARDWARE_TESTS_BAR_V1_0_IMPORTTYPES_H

#include <android/hardware/tests/bar/1.0/IImportTypes.h>
#include <hidl/Status.h>
@@ -33,4 +33,4 @@ extern "C" IImportTypes* HIDL_FETCH_IImportTypes(const char* name);
}  // namespace hardware
}  // namespace android

#endif  // HIDL_GENERATED_android_hardware_tests_bar_V1_0_ImportTypes_H_
#endif  // ANDROID_HARDWARE_TESTS_BAR_V1_0_IMPORTTYPES_H
+3 −3
Original line number Diff line number Diff line
#ifndef HIDL_GENERATED_android_hardware_tests_foo_V1_0_Foo_H_
#define HIDL_GENERATED_android_hardware_tests_foo_V1_0_Foo_H_
#ifndef ANDROID_HARDWARE_TESTS_FOO_V1_0_FOO_H
#define ANDROID_HARDWARE_TESTS_FOO_V1_0_FOO_H

#include <android/hardware/tests/foo/1.0/IFoo.h>
#include <hidl/Status.h>
@@ -71,4 +71,4 @@ extern "C" IFoo* HIDL_FETCH_IFoo(const char* name);
}  // namespace hardware
}  // namespace android

#endif  // HIDL_GENERATED_android_hardware_tests_foo_V1_0_Foo_H_
#endif  // ANDROID_HARDWARE_TESTS_FOO_V1_0_FOO_H
Loading