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 /tv | |
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 'tv')
-rw-r--r-- | tv/cec/1.0/default/HdmiCec.h | 6 | ||||
-rw-r--r-- | tv/input/1.0/default/TvInput.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/tv/cec/1.0/default/HdmiCec.h b/tv/cec/1.0/default/HdmiCec.h index a41a5f01a0..34a3bb0816 100644 --- a/tv/cec/1.0/default/HdmiCec.h +++ b/tv/cec/1.0/default/HdmiCec.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef HIDL_GENERATED_android_hardware_tv_cec_V1_0_HdmiCec_H_ -#define HIDL_GENERATED_android_hardware_tv_cec_V1_0_HdmiCec_H_ +#ifndef ANDROID_HARDWARE_TV_CEC_V1_0_HDMICEC_H +#define ANDROID_HARDWARE_TV_CEC_V1_0_HDMICEC_H #include <algorithm> @@ -101,4 +101,4 @@ extern "C" IHdmiCec* HIDL_FETCH_IHdmiCec(const char* name); } // namespace hardware } // namespace android -#endif // HIDL_GENERATED_android_hardware_tv_cec_V1_0_HdmiCec_H_ +#endif // ANDROID_HARDWARE_TV_CEC_V1_0_HDMICEC_H diff --git a/tv/input/1.0/default/TvInput.h b/tv/input/1.0/default/TvInput.h index 81cbb208f6..beb69f5d7b 100644 --- a/tv/input/1.0/default/TvInput.h +++ b/tv/input/1.0/default/TvInput.h @@ -13,8 +13,8 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#ifndef HIDL_GENERATED_android_hardware_tv_input_V1_0_TvInput_H_ -#define HIDL_GENERATED_android_hardware_tv_input_V1_0_TvInput_H_ +#ifndef ANDROID_HARDWARE_TV_INPUT_V1_0_TVINPUT_H +#define ANDROID_HARDWARE_TV_INPUT_V1_0_TVINPUT_H #include <android/hardware/tv/input/1.0/ITvInput.h> #include <hidl/Status.h> @@ -72,4 +72,4 @@ extern "C" ITvInput* HIDL_FETCH_ITvInput(const char* name); } // namespace hardware } // namespace android -#endif // HIDL_GENERATED_android_hardware_tv_input_V1_0_TvInput_H_ +#endif // ANDROID_HARDWARE_TV_INPUT_V1_0_TVINPUT_H |