Dan Carpenter 0d0d4d21a0 staging: fbtft: array underflow in fbtft_request_gpios_match() 8 rokov pred
..
Kconfig 079306e979 staging: fbtft: add adriver for SH1106 8 rokov pred
Makefile 079306e979 staging: fbtft: add adriver for SH1106 8 rokov pred
README b6935e2911 Staging: fbtft: remove trailing whitespace 10 rokov pred
fb_agm1264k-fl.c 100007115f Staging: fbtft: Fix unbalanced braces around else statement 8 rokov pred
fb_bd663474.c 64ffdc383b Staging: fbtft: Remove debug messages 10 rokov pred
fb_hx8340bn.c 675b62d288 staging: fbtft: Fix to avoid precedence issues 8 rokov pred
fb_hx8347d.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_hx8353d.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_hx8357d.c 5f10ef7dce staging: fbtft: Indent to match open parenthesis 9 rokov pred
fb_hx8357d.h e0246ea374 staging: fbtft: Fix block comments according to kernel coding style 9 rokov pred
fb_ili9163.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 rokov pred
fb_ili9320.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_ili9325.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 rokov pred
fb_ili9340.c f07e89ce1e staging: fbtft: Fix alignment to match open parenthesis 9 rokov pred
fb_ili9341.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_ili9481.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 rokov pred
fb_ili9486.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 rokov pred
fb_pcd8544.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_ra8875.c eb1d69c21c staging:fbtft: Fix some warnings regarding types. 8 rokov pred
fb_s6d02a1.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 rokov pred
fb_s6d1121.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_sh1106.c 74ec0a0e37 staging: fbtft: fb_sh1106: use new helper helper fbtft_write_buf_dc 8 rokov pred
fb_ssd1289.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 rokov pred
fb_ssd1305.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_ssd1306.c 307a082484 staging: fbtft: fix unaligned parentheses 8 rokov pred
fb_ssd1325.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_ssd1331.c 8c8a4186ed staging/fbtft: Hush checkpatch.pl warning about unnecessary line continuations 8 rokov pred
fb_ssd1351.c 307a082484 staging: fbtft: fix unaligned parentheses 8 rokov pred
fb_st7735r.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 rokov pred
fb_st7789v.c 023eba2749 staging: fbtft: make const array gamma_par_mask static 8 rokov pred
fb_tinylcd.c 440176316c staging: fbtft: Use standard MIPI DCS command defines for tinylcd 9 rokov pred
fb_tls8204.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred
fb_uc1611.c ced04842d2 staging: fbtft: fix checkpatch decimal permissions error 8 rokov pred
fb_uc1701.c fd59f106f4 Staging: fbtft: Removed commented out/dead code 9 rokov pred
fb_upd161704.c 64ffdc383b Staging: fbtft: Remove debug messages 10 rokov pred
fb_watterott.c e8e9cd9786 Staging: fbtft: fb_watterott: fix incorrect type in assignments 8 rokov pred
fbtft-bus.c 919a9bb607 staging: fbtft: fix type assignment warning 8 rokov pred
fbtft-core.c 0d0d4d21a0 staging: fbtft: array underflow in fbtft_request_gpios_match() 8 rokov pred
fbtft-io.c caaba6775e staging: fbtft: fix sparse warning 8 rokov pred
fbtft-sysfs.c b40f7808a0 staging: fbtft: fix open parentheses alignment 8 rokov pred
fbtft.h 60da70204e staging: fbtft: add helper fbtft_write_buf_dc 8 rokov pred
fbtft_device.c 2fad31423d staging: fbtft: Merged two identical conditionals into one. 8 rokov pred
flexfb.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 rokov pred
internal.h 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 rokov pred

README

FBTFT
=========

Linux Framebuffer drivers for small TFT LCD display modules.
The module 'fbtft' makes writing drivers for some of these displays very easy.

Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.

INSTALLATION
Download kernel sources

From Linux 3.15
cd drivers/video/fbdev/fbtft
git clone https://github.com/notro/fbtft.git

Add to drivers/video/fbdev/Kconfig: source "drivers/video/fbdev/fbtft/Kconfig"
Add to drivers/video/fbdev/Makefile: obj-y += fbtft/

Before Linux 3.15
cd drivers/video
git clone https://github.com/notro/fbtft.git

Add to drivers/video/Kconfig: source "drivers/video/fbtft/Kconfig"
Add to drivers/video/Makefile: obj-y += fbtft/

Enable driver(s) in menuconfig and build the kernel


See wiki for more information: https://github.com/notro/fbtft/wiki


Source: https://github.com/notro/fbtft/