Skip to content

Commit

Permalink
Input: iforce - use ENOSPC instead of ENOMEM
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Anssi Hannula authored and Dmitry Torokhov committed Jun 5, 2006
1 parent 0f5e560 commit fe65b97
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/input/joystick/iforce/iforce-ff.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static int make_magnitude_modifier(struct iforce* iforce,
iforce->device_memory.start, iforce->device_memory.end, 2L,
NULL, NULL)) {
mutex_unlock(&iforce->mem_mutex);
return -ENOMEM;
return -ENOSPC;
}
mutex_unlock(&iforce->mem_mutex);
}
Expand Down Expand Up @@ -80,7 +80,7 @@ static int make_period_modifier(struct iforce* iforce,
iforce->device_memory.start, iforce->device_memory.end, 2L,
NULL, NULL)) {
mutex_unlock(&iforce->mem_mutex);
return -ENOMEM;
return -ENOSPC;
}
mutex_unlock(&iforce->mem_mutex);
}
Expand Down Expand Up @@ -120,7 +120,7 @@ static int make_envelope_modifier(struct iforce* iforce,
iforce->device_memory.start, iforce->device_memory.end, 2L,
NULL, NULL)) {
mutex_unlock(&iforce->mem_mutex);
return -ENOMEM;
return -ENOSPC;
}
mutex_unlock(&iforce->mem_mutex);
}
Expand Down Expand Up @@ -157,7 +157,7 @@ static int make_condition_modifier(struct iforce* iforce,
iforce->device_memory.start, iforce->device_memory.end, 2L,
NULL, NULL)) {
mutex_unlock(&iforce->mem_mutex);
return -ENOMEM;
return -ENOSPC;
}
mutex_unlock(&iforce->mem_mutex);
}
Expand Down

0 comments on commit fe65b97

Please sign in to comment.