Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 36350
b: refs/heads/master
c: b97b196
h: refs/heads/master
v: v3
  • Loading branch information
Alan Stern authored and Greg Kroah-Hartman committed Sep 27, 2006
1 parent 07c678a commit 0e395e0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 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: 00463c1633b6d6a2178d2dc794c0a70ac2f9ce6b
refs/heads/master: b97b196c9d351a501ed89fc836e4e2fe71ff93c9
7 changes: 7 additions & 0 deletions trunk/drivers/usb/storage/unusual_devs.h
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,13 @@ UNUSUAL_DEV( 0x0595, 0x4343, 0x0000, 0x2210,
"Digital Camera EX-20 DSC",
US_SC_8070, US_PR_DEVICE, NULL, 0 ),

/* Reported by <Hendryk.Pfeiffer@gmx.de> */
UNUSUAL_DEV( 0x059f, 0x0643, 0x0000, 0x0000,
"LaCie",
"DVD+-RW",
US_SC_DEVICE, US_PR_DEVICE, NULL,
US_FL_GO_SLOW ),

/* Submitted by Joel Bourquard <numlock@freesurf.ch>
* Some versions of this device need the SubClass and Protocol overrides
* while others don't.
Expand Down
4 changes: 2 additions & 2 deletions trunk/include/asm-i386/semaphore.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ static inline int down_interruptible(struct semaphore * sem)
"lea %1,%%eax\n\t"
"call __down_failed_interruptible\n"
"2:"
:"=&a" (result), "+m" (sem->count)
:"=a" (result), "+m" (sem->count)
:
:"memory");
return result;
Expand All @@ -148,7 +148,7 @@ static inline int down_trylock(struct semaphore * sem)
"lea %1,%%eax\n\t"
"call __down_failed_trylock\n\t"
"2:\n"
:"=&a" (result), "+m" (sem->count)
:"=a" (result), "+m" (sem->count)
:
:"memory");
return result;
Expand Down

0 comments on commit 0e395e0

Please sign in to comment.