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

Commit 16574a27 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drm/msm/sde: use constant size array in sde_watchdog_te_status" into msm-4.9

parents fd4b37d0 5d1c951e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -80,12 +80,12 @@ struct sde_danger_safe_status {
 * struct sde_watchdog_te_status - configure watchdog timer to generate TE
 * @pp_count: number of ping pongs active
 * @frame_rate: Display frame rate
 * @ppnumber: base address of ping pong info
 * @ppnumber: ping pong index array
 */
struct sde_watchdog_te_status {
	u32 pp_count;
	u32 frame_rate;
	u32 ppnumber[];
	u32 ppnumber[PINGPONG_MAX];
};

/**