blob: 46d42f003f91db02e9a5bbf78ba3438ea60cf50f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/******************************************************************************
** File Name: sprdfb_chip_common.c *
** Author: congfu.zhao *
** DATE: 30/04/2013 *
** Copyright: 2013 Spreatrum, Incoporated. All Rights Reserved. *
** Description: *
******************************************************************************/
/******************************************************************************
** Edit History *
**---------------------------------------------------------------------------*
** DATE NAME DESCRIPTION *
******************************************************************************/
#include <linux/kernel.h>
#include "sprdfb_chip_common.h"
u32 dispc_glb_read(unsigned long reg)
{
return sci_glb_read(reg, 0xffffffff);
}
|