Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325251
b: refs/heads/master
c: 7dd73b8
h: refs/heads/master
i:
  325249: 35b8391
  325247: 2806517
v: v3
  • Loading branch information
Jens Taprogge authored and Greg Kroah-Hartman committed Sep 12, 2012
1 parent b89644a commit b3a6e5d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6f892216830df9bcde74aca33f1f998cce99e401
refs/heads/master: 7dd73b866ed656b4ef7b475de4588cb1a3f765d4
10 changes: 5 additions & 5 deletions trunk/drivers/staging/ipack/bridges/tpci200.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ static int tpci200_slot_map_space(struct ipack_device *dev,
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;
Expand All @@ -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;
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/staging/ipack/bridges/tpci200.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit b3a6e5d

Please sign in to comment.