Revision 020120af21a643c6adaa4f090c3abf275e3edd68 authored by Mauro Carvalho Chehab on 19 November 2020, 11:17:49 UTC, committed by Mauro Carvalho Chehab on 26 November 2020, 07:05:24 UTC
Update the vidtv documentation with the relevant changes
after the last patches.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
1 parent b087982
Raw File
display_timing.c
// SPDX-License-Identifier: GPL-2.0-only
/*
 * generic display timing functions
 *
 * Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
 */

#include <linux/export.h>
#include <linux/slab.h>
#include <video/display_timing.h>

void display_timings_release(struct display_timings *disp)
{
	if (disp->timings) {
		unsigned int i;

		for (i = 0; i < disp->num_timings; i++)
			kfree(disp->timings[i]);
		kfree(disp->timings);
	}
	kfree(disp);
}
EXPORT_SYMBOL_GPL(display_timings_release);
back to top