Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40834
b: refs/heads/master
c: 64d9fe6
h: refs/heads/master
v: v3
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Nov 9, 2006
1 parent a1e2253 commit 481e481
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 46d52b09fa6a2d1e313cb75ca352d6f466e67bd1
refs/heads/master: 64d9fe6973a9348e5211f3cc9f04b899329caeb4
6 changes: 3 additions & 3 deletions trunk/drivers/char/ipmi/ipmi_si_intf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,7 @@ static void intf_mem_outb(struct si_sm_io *io, unsigned int offset,
static unsigned char intf_mem_inw(struct si_sm_io *io, unsigned int offset)
{
return (readw((io->addr)+(offset * io->regspacing)) >> io->regshift)
&& 0xff;
& 0xff;
}

static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
Expand All @@ -1223,7 +1223,7 @@ static void intf_mem_outw(struct si_sm_io *io, unsigned int offset,
static unsigned char intf_mem_inl(struct si_sm_io *io, unsigned int offset)
{
return (readl((io->addr)+(offset * io->regspacing)) >> io->regshift)
&& 0xff;
& 0xff;
}

static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
Expand All @@ -1236,7 +1236,7 @@ static void intf_mem_outl(struct si_sm_io *io, unsigned int offset,
static unsigned char mem_inq(struct si_sm_io *io, unsigned int offset)
{
return (readq((io->addr)+(offset * io->regspacing)) >> io->regshift)
&& 0xff;
& 0xff;
}

static void mem_outq(struct si_sm_io *io, unsigned int offset,
Expand Down

0 comments on commit 481e481

Please sign in to comment.