diff options
author | Richard Zhao <[email protected]> | 2012-09-18 16:14:58 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2012-09-21 09:53:15 -0700 |
commit | 0a86a86b92312dacf74008ea1e1f4df20362f9f4 (patch) | |
tree | ed1045efd7ea198248d21992297da31541c2e377 | |
parent | bd21f551c365e50a241b4cee4bc8be72914ff236 (diff) |
serial: imx: set sport as drvdata, like it's used elsewhere
Signed-off-by: Richard Zhao <[email protected]>
Acked-by: Shawn Guo <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/imx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/imx.c b/drivers/tty/serial/imx.c index 5952b25c288e..49f664f72870 100644 --- a/drivers/tty/serial/imx.c +++ b/drivers/tty/serial/imx.c @@ -1540,7 +1540,7 @@ static int serial_imx_probe(struct platform_device *pdev) ret = uart_add_one_port(&imx_reg, &sport->port); if (ret) goto deinit; - platform_set_drvdata(pdev, &sport->port); + platform_set_drvdata(pdev, sport); return 0; deinit: |