drivers/serial/mpc52xx_uart.c: Use UPIO_MEM rather than SERIAL_IO_MEM
commitb7a8212cae06f3bfa810f941f455bd8bb9aa8528
authorJulia Lawall <julia@diku.dk>
Thu, 15 Oct 2009 15:58:28 +0000 (15 09:58 -0600)
committerGrant Likely <grant.likely@secretlab.ca>
Thu, 15 Oct 2009 15:58:28 +0000 (15 09:58 -0600)
tree1501b0a54824f11b9ed4d990013d54e3f2cd6a5e
parentdb467ebd1fb0ff17df30a78d87c6cda4ea7b21c2
drivers/serial/mpc52xx_uart.c: Use UPIO_MEM rather than SERIAL_IO_MEM

As in the commit 9b4a1617772d6d5ab5eeda0cd95302fae119e359, use UPIO_MEM
rather than SERIAL_IO_MEM.  Both have the same value.

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@has_sc@
@@

#include <linux/serial_core.h>

@depends on has_sc@
@@

- SERIAL_IO_MEM
+ UPIO_MEM
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/serial/mpc52xx_uart.c