Source
1
+
// SPDX-License-Identifier: GPL-2.0
1
2
/*
2
3
* Filename: cfag12864bfb.c
3
4
* Version: 0.1.0
4
5
* Description: cfag12864b LCD framebuffer driver
5
-
* License: GPLv2
6
6
* Depends: cfag12864b
7
7
*
8
8
* Author: Copyright (C) Miguel Ojeda Sandonis
9
9
* Date: 2006-10-31
10
-
*
11
-
* This program is free software; you can redistribute it and/or modify
12
-
* it under the terms of the GNU General Public License version 2 as
13
-
* published by the Free Software Foundation.
14
-
*
15
-
* This program is distributed in the hope that it will be useful,
16
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
-
* GNU General Public License for more details.
19
-
*
20
-
* You should have received a copy of the GNU General Public License
21
-
* along with this program; if not, write to the Free Software
22
-
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23
-
*
24
10
*/
25
11
​
26
12
#include <linux/init.h>
27
13
#include <linux/module.h>
28
14
#include <linux/kernel.h>
29
15
#include <linux/delay.h>
30
16
#include <linux/errno.h>
31
17
#include <linux/fb.h>
32
18
#include <linux/mm.h>
33
19
#include <linux/platform_device.h>