kernel/drivers/staging/android/fiq_debugger/fiq_debugger.h
.. .. @@ -63,6 +63,8 @@ 63 63 #ifdef CONFIG_RK_CONSOLE_THREAD 64 64 void (*console_write)(struct platform_device *pdev, const char *s, 65 65 unsigned int count); 66 + int (*tty_write)(struct platform_device *pdev, const char *s, int count);67 + int (*write_room)(struct platform_device *pdev);66 68 #endif 67 69 #ifdef CONFIG_FIQ_DEBUGGER_TRUST_ZONE 68 70 void (*switch_cpu)(struct platform_device *pdev, u32 cpu); .. .. @@ -70,4 +72,5 @@ 70 72 #endif 71 73 }; 72 74 75 +void fiq_tty_wake_up(struct platform_device *pdev);73 76 #endif