Avoid C-style cast warnings
hardware/libhardware/include was being included with -isystem, which hides warnings. Use a macro to convert modules to hw_device_t** to call the open function that works in C++ and C. Bug: 32018017 Test: m -j Change-Id: If68bf15581975f1217fcab366cef7bc784894641
This commit is contained in:
@@ -740,7 +740,7 @@ typedef struct hwc2_device {
|
||||
static inline int hwc2_open(const struct hw_module_t* module,
|
||||
hwc2_device_t** device) {
|
||||
return module->methods->open(module, HWC_HARDWARE_COMPOSER,
|
||||
(struct hw_device_t**) device);
|
||||
TO_HW_DEVICE_T_OPEN(device));
|
||||
}
|
||||
|
||||
static inline int hwc2_close(hwc2_device_t* device) {
|
||||
|
||||
Reference in New Issue
Block a user