[ARM] 4803/1: pxa: fix building issue of poodle.c caused by patch 4737/1

The is caused by the patch below:

[ARM] 4737/1: Refactor corgi_lcd to improve readability + bugfix

It renamed the confusing get_hsync_len() to get_hsync_invperiod(), which
unfortunately leaves poodle.c un-modified.

Signed-off-by: eric miao <eric.miao@marvell.com>
Acked-by: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by eric miao and committed by Russell King 6a0bd09d bb548dd4

+4 -4
+4 -4
arch/arm/mach-pxa/poodle.c
··· 164 164 }, 165 165 }; 166 166 167 - static unsigned long poodle_get_hsync_len(void) 167 + static unsigned long poodle_get_hsync_invperiod(void) 168 168 { 169 169 return 0; 170 170 } ··· 174 174 } 175 175 176 176 static struct corgits_machinfo poodle_ts_machinfo = { 177 - .get_hsync_len = poodle_get_hsync_len, 178 - .put_hsync = poodle_null_hsync, 179 - .wait_hsync = poodle_null_hsync, 177 + .get_hsync_invperiod = poodle_get_hsync_invperiod, 178 + .put_hsync = poodle_null_hsync, 179 + .wait_hsync = poodle_null_hsync, 180 180 }; 181 181 182 182 static struct platform_device poodle_ts_device = {