ANDROID: GKI: Add 'checksum' to struct drm_connector

Resolves an abi diff.

Bug: 152417756
Signed-off-by: Alistair Delva <adelva@google.com>
Change-Id: Ic6627d056eff40bb79a600d5ffb83ada78319c56
This commit is contained in:
Alistair Delva 2020-04-17 09:55:51 -07:00
parent c4ea3263ea
commit 716aae82b8

View file

@ -1178,6 +1178,13 @@ struct drm_connector {
* Can find the panel which connected to drm_connector.
*/
struct drm_panel *panel;
/**
* @checksum:
*
* The calculated checksum value of first 127 bytes of associated EDID.
*/
u8 checksum;
};
#define obj_to_connector(x) container_of(x, struct drm_connector, base)