Commit 8829c752 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Linus Torvalds

[PATCH] fix bitop warnings in parallel port generic driver

pg tried to issue bitops on int, this fixes it to use an ulong instead.
parent 2c6e92ad
......@@ -244,7 +244,7 @@ struct pg_unit {
int timeout; /* timeout requested */
int status; /* last sense key */
int drive; /* drive */
int access; /* count of active opens ... */
unsigned long access; /* count of active opens ... */
int present; /* device present ? */
char *bufptr;
char name[PG_NAMELEN]; /* pg0, pg1, ... */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment