Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42042
b: refs/heads/master
c: ce26a85
h: refs/heads/master
v: v3
  • Loading branch information
Cornelia Huck authored and Martin Schwidefsky committed Dec 4, 2006
1 parent 299faa1 commit 9c92d65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 09252e77ed13b1b412329825bad5797fbdd5a5c8
refs/heads/master: ce26a8532fd062ccd3f3c589a4be269a2dc20f00
5 changes: 4 additions & 1 deletion trunk/include/asm-s390/cio.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,10 @@ struct ccw_dev_id {
static inline int ccw_dev_id_is_equal(struct ccw_dev_id *dev_id1,
struct ccw_dev_id *dev_id2)
{
return !memcmp(dev_id1, dev_id2, sizeof(struct ccw_dev_id));
if ((dev_id1->ssid == dev_id2->ssid) &&
(dev_id1->devno == dev_id2->devno))
return 1;
return 0;
}

extern int diag210(struct diag210 *addr);
Expand Down

0 comments on commit 9c92d65

Please sign in to comment.