Skip to content

Commit

Permalink
[ARM] 4803/1: pxa: fix building issue of poodle.c caused by patch 4737/1
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
eric miao authored and Russell King committed Feb 4, 2008
1 parent bb548dd commit 6a0bd09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm/mach-pxa/poodle.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ static struct resource poodlets_resources[] = {
},
};

static unsigned long poodle_get_hsync_len(void)
static unsigned long poodle_get_hsync_invperiod(void)
{
return 0;
}
Expand All @@ -174,9 +174,9 @@ static void poodle_null_hsync(void)
}

static struct corgits_machinfo poodle_ts_machinfo = {
.get_hsync_len = poodle_get_hsync_len,
.put_hsync = poodle_null_hsync,
.wait_hsync = poodle_null_hsync,
.get_hsync_invperiod = poodle_get_hsync_invperiod,
.put_hsync = poodle_null_hsync,
.wait_hsync = poodle_null_hsync,
};

static struct platform_device poodle_ts_device = {
Expand Down

0 comments on commit 6a0bd09

Please sign in to comment.