mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
24
drivers/video/display_timing.c
Normal file
24
drivers/video/display_timing.c
Normal file
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* generic display timing functions
|
||||
*
|
||||
* Copyright (c) 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
|
||||
*
|
||||
* This file is released under the GPLv2
|
||||
*/
|
||||
|
||||
#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);
|
Loading…
Add table
Add a link
Reference in a new issue