Skip to content

Commit

Permalink
[ARM] 3793/1: S3C2412: fix wrong serial info struct
Browse files Browse the repository at this point in the history
Patch from Ben Dooks

The S3C2440 serial info struct is being passed
through the S3C2412 serial info struct probe
routine.

Signed-off-by: Ben Dooks <[email protected]>
Signed-off-by: Thomas Glexiner <[email protected]>
Signed-off-by: Russell King <[email protected]>
  • Loading branch information
Ben Dooks authored and Russell King committed Sep 18, 2006
1 parent 36694a4 commit 71aa705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/serial/s3c2410.c
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@ static struct s3c24xx_uart_info s3c2412_uart_inf = {
static int s3c2412_serial_probe(struct platform_device *dev)
{
dbg("s3c2440_serial_probe: dev=%p\n", dev);
return s3c24xx_serial_probe(dev, &s3c2440_uart_inf);
return s3c24xx_serial_probe(dev, &s3c2412_uart_inf);
}

static struct platform_driver s3c2412_serial_drv = {
Expand Down

0 comments on commit 71aa705

Please sign in to comment.