diff options
author | Steven Moreland <smoreland@google.com> | 2016-11-28 18:37:07 -0800 |
---|---|---|
committer | Steven Moreland <smoreland@google.com> | 2016-11-29 15:05:31 -0800 |
commit | d6e4f03acf5fa1e76b75e33af7a26f248a92be9a (patch) | |
tree | 24f6a20868ddce4299be5e165904c0d8485837cf /vibrator | |
parent | 1c03ad8545ad518b99912ccb6c84b3c7638ab969 (diff) | |
download | platform_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.tar.gz platform_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.tar.bz2 platform_hardware_interfaces-d6e4f03acf5fa1e76b75e33af7a26f248a92be9a.zip |
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.
Change-Id: I4aa89a39907024aa9525df71ff3715979f431357
Similar commit: https://android-review.googlesource.com/#/c/305996/
Test: pass
Diffstat (limited to 'vibrator')
-rw-r--r-- | vibrator/1.0/default/Vibrator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vibrator/1.0/default/Vibrator.h b/vibrator/1.0/default/Vibrator.h index 36c4cc1d4b..061b36410e 100644 --- a/vibrator/1.0/default/Vibrator.h +++ b/vibrator/1.0/default/Vibrator.h @@ -13,8 +13,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef HIDL_GENERATED_android_hardware_vibrator_V1_0_Vibrator_H_ -#define HIDL_GENERATED_android_hardware_vibrator_V1_0_Vibrator_H_ +#ifndef ANDROID_HARDWARE_VIBRATOR_V1_0_VIBRATOR_H +#define ANDROID_HARDWARE_VIBRATOR_V1_0_VIBRATOR_H #include <android/hardware/vibrator/1.0/IVibrator.h> #include <hidl/Status.h> @@ -53,4 +53,4 @@ extern "C" IVibrator* HIDL_FETCH_IVibrator(const char* name); } // namespace hardware } // namespace android -#endif // HIDL_GENERATED_android_hardware_vibrator_V1_0_Vibrator_H_ +#endif // ANDROID_HARDWARE_VIBRATOR_V1_0_VIBRATOR_H |