diff options
| author | Anssi Hannula <anssi.hannula@gmail.com> | 2006-06-05 00:18:21 -0400 |
|---|---|---|
| committer | Dmitry Torokhov <dtor_core@ameritech.net> | 2006-06-05 00:18:21 -0400 |
| commit | fe65b97a5885a84baa103d7213754ff29e8f872f (patch) | |
| tree | a393e8d550c4675b6f6c30bdd41285d2c735b837 | |
| parent | 0f5e560e4523e15f33922de5becd024ccaaff76c (diff) | |
Input: iforce - use ENOSPC instead of ENOMEM
Use -ENOSPC instead of -ENOMEM when the iforce device doesn't have
enough free memory for the new effect. All other drivers are using
-ENOSPC, so this makes the behaviour coherent.
Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
| -rw-r--r-- | drivers/input/joystick/iforce/iforce-ff.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/input/joystick/iforce/iforce-ff.c b/drivers/input/joystick/iforce/iforce-ff.c index 2b8e8456c9fa..50c90765aee1 100644 --- a/drivers/input/joystick/iforce/iforce-ff.c +++ b/drivers/input/joystick/iforce/iforce-ff.c | |||
| @@ -47,7 +47,7 @@ static int make_magnitude_modifier(struct iforce* iforce, | |||
| 47 | iforce->device_memory.start, iforce->device_memory.end, 2L, | 47 | iforce->device_memory.start, iforce->device_memory.end, 2L, |
| 48 | NULL, NULL)) { | 48 | NULL, NULL)) { |
| 49 | mutex_unlock(&iforce->mem_mutex); | 49 | mutex_unlock(&iforce->mem_mutex); |
| 50 | return -ENOMEM; | 50 | return -ENOSPC; |
| 51 | } | 51 | } |
| 52 | mutex_unlock(&iforce->mem_mutex); | 52 | mutex_unlock(&iforce->mem_mutex); |
| 53 | } | 53 | } |
| @@ -80,7 +80,7 @@ static int make_period_modifier(struct iforce* iforce, | |||
| 80 | iforce->device_memory.start, iforce->device_memory.end, 2L, | 80 | iforce->device_memory.start, iforce->device_memory.end, 2L, |
| 81 | NULL, NULL)) { | 81 | NULL, NULL)) { |
| 82 | mutex_unlock(&iforce->mem_mutex); | 82 | mutex_unlock(&iforce->mem_mutex); |
| 83 | return -ENOMEM; | 83 | return -ENOSPC; |
| 84 | } | 84 | } |
| 85 | mutex_unlock(&iforce->mem_mutex); | 85 | mutex_unlock(&iforce->mem_mutex); |
| 86 | } | 86 | } |
| @@ -120,7 +120,7 @@ static int make_envelope_modifier(struct iforce* iforce, | |||
| 120 | iforce->device_memory.start, iforce->device_memory.end, 2L, | 120 | iforce->device_memory.start, iforce->device_memory.end, 2L, |
| 121 | NULL, NULL)) { | 121 | NULL, NULL)) { |
| 122 | mutex_unlock(&iforce->mem_mutex); | 122 | mutex_unlock(&iforce->mem_mutex); |
| 123 | return -ENOMEM; | 123 | return -ENOSPC; |
| 124 | } | 124 | } |
| 125 | mutex_unlock(&iforce->mem_mutex); | 125 | mutex_unlock(&iforce->mem_mutex); |
| 126 | } | 126 | } |
| @@ -157,7 +157,7 @@ static int make_condition_modifier(struct iforce* iforce, | |||
| 157 | iforce->device_memory.start, iforce->device_memory.end, 2L, | 157 | iforce->device_memory.start, iforce->device_memory.end, 2L, |
| 158 | NULL, NULL)) { | 158 | NULL, NULL)) { |
| 159 | mutex_unlock(&iforce->mem_mutex); | 159 | mutex_unlock(&iforce->mem_mutex); |
| 160 | return -ENOMEM; | 160 | return -ENOSPC; |
| 161 | } | 161 | } |
| 162 | mutex_unlock(&iforce->mem_mutex); | 162 | mutex_unlock(&iforce->mem_mutex); |
| 163 | } | 163 | } |
