staging: ipack/bridges/tpci200: Use endianess-aware types where applicable.
Signed-off-by: Jens Taprogge <jens.taprogge@taprogge.org> Signed-off-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6f89221683
commit
7dd73b866e
@ -501,7 +501,7 @@ out_unlock:
|
||||
static int tpci200_get_clockrate(struct ipack_device *dev)
|
||||
{
|
||||
struct tpci200_board *tpci200 = check_slot(dev);
|
||||
u16 __iomem *addr;
|
||||
__le16 __iomem *addr;
|
||||
|
||||
if (!tpci200)
|
||||
return -ENODEV;
|
||||
@ -513,7 +513,7 @@ static int tpci200_get_clockrate(struct ipack_device *dev)
|
||||
static int tpci200_set_clockrate(struct ipack_device *dev, int mherz)
|
||||
{
|
||||
struct tpci200_board *tpci200 = check_slot(dev);
|
||||
u16 __iomem *addr;
|
||||
__le16 __iomem *addr;
|
||||
|
||||
if (!tpci200)
|
||||
return -ENODEV;
|
||||
@ -536,7 +536,7 @@ static int tpci200_set_clockrate(struct ipack_device *dev, int mherz)
|
||||
static int tpci200_get_error(struct ipack_device *dev)
|
||||
{
|
||||
struct tpci200_board *tpci200 = check_slot(dev);
|
||||
u16 __iomem *addr;
|
||||
__le16 __iomem *addr;
|
||||
u16 mask;
|
||||
|
||||
if (!tpci200)
|
||||
@ -550,7 +550,7 @@ static int tpci200_get_error(struct ipack_device *dev)
|
||||
static int tpci200_get_timeout(struct ipack_device *dev)
|
||||
{
|
||||
struct tpci200_board *tpci200 = check_slot(dev);
|
||||
u16 __iomem *addr;
|
||||
__le16 __iomem *addr;
|
||||
u16 mask;
|
||||
|
||||
if (!tpci200)
|
||||
@ -565,7 +565,7 @@ static int tpci200_get_timeout(struct ipack_device *dev)
|
||||
static int tpci200_reset_timeout(struct ipack_device *dev)
|
||||
{
|
||||
struct tpci200_board *tpci200 = check_slot(dev);
|
||||
u16 __iomem *addr;
|
||||
__le16 __iomem *addr;
|
||||
u16 mask;
|
||||
|
||||
if (!tpci200)
|
||||
|
@ -37,12 +37,12 @@
|
||||
#define TPCI200_MEM8_SPACE_BAR 5
|
||||
|
||||
struct tpci200_regs {
|
||||
u16 revision;
|
||||
__le16 revision;
|
||||
/* writes to control should occur with the mutex held to protect
|
||||
* read-modify-write operations */
|
||||
u16 control[4];
|
||||
u16 reset;
|
||||
u16 status;
|
||||
__le16 control[4];
|
||||
__le16 reset;
|
||||
__le16 status;
|
||||
u8 reserved[242];
|
||||
} __packed;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user