View Single Post
Capn_Fish's Avatar
Posts: 140 | Thanked: 13 times | Joined on Mar 2008
#6
Code:
arch/arm/mach-omap2/board-n8x0.c: In function 'tsc2301_dev_init':
arch/arm/mach-omap2/board-n8x0.c:314: error: 'struct tsc2301_platform_data' has no member named 'dav_int'
arch/arm/mach-omap2/board-n8x0.c: In function 'n8x0_ts_set_config':
arch/arm/mach-omap2/board-n8x0.c:335: error: 'struct tsc2301_platform_data' has no member named 'ts_max_pressure'
arch/arm/mach-omap2/board-n8x0.c:347: error: 'struct tsc2301_platform_data' has no member named 'ts_max_pressure'
There IS a ts_pressure_max (this file was copied from the Diablo sources, since it doesn't exist in my git, AFAICT). I don't see anything related to dav_int.

Is there some other place I should be getting the file?

Thanks a bunch! You've got exactly what I've been looking for!

EDIT: Trying it with dav_int changed to dav_gpio and ts_max_pressure to ts_pressure_max in board_n8x0.c. We'll see how this goes...

EDIT2: It seems to also be lacking drivers/input/tsc2301_kp.c.

EDIT3: And ASM stuff seems to not be symlinked correctly, or something (asm/arch/gpio.h not found; symlinking arch/arm/asm to include/asm/arch gives a bunch of "xxx undefined" errors)

EDIT4: I'm building with " CROSS_COMPILE=arm-none-linux-gnueabi- ARCH=arm make -j3 zImage" for what it's worth
__________________
Nokia N810 (Some mutation of Mer)

Last edited by Capn_Fish; 2010-04-12 at 20:06. Reason: (more) Updates