The patch titled input: return -ENOSYS for registering functions when ff is disabled has been removed from the -mm tree. Its filename is input-new-force-feedback-interface-return-enosys-for-registering-functions-when-ff-is-disabled.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: input: return -ENOSYS for registering functions when ff is disabled From: Anssi Hannula <anssi.hannula@xxxxxxxxx> Return -ENOSYS instead of -EPERM for input_ff_allocate() and input_ff_register() when INPUT_FF_EFFECTS is disabled. Signed-off-by: Anssi Hannula <anssi.hannula@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/input.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/input.h~input-new-force-feedback-interface-return-enosys-for-registering-functions-when-ff-is-disabled include/linux/input.h --- 25/include/linux/input.h~input-new-force-feedback-interface-return-enosys-for-registering-functions-when-ff-is-disabled Thu Jun 1 15:28:37 2006 +++ 25-akpm/include/linux/input.h Thu Jun 1 15:28:37 2006 @@ -1056,12 +1056,12 @@ int input_ff_event(struct input_dev *dev #else static inline int input_ff_allocate(struct input_dev *dev) { - return -EPERM; + return -ENOSYS; } static inline int input_ff_register(struct input_dev *dev, struct ff_driver *driver) { - return -EPERM; + return -ENOSYS; } static inline int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file) _ Patches currently in -mm which might be from anssi.hannula@xxxxxxxxx are input-move-fixp-arithh-to-drivers-input.patch input-fix-accuracy-of-fixp-arithh.patch input-new-force-feedback-interface.patch input-adapt-hid-force-feedback-drivers-for-the-new-interface.patch input-adapt-uinput-for-the-new-force-feedback-interface.patch input-adapt-iforce-driver-for-the-new-force-feedback-interface.patch input-force-feedback-driver-for-pid-devices.patch input-force-feedback-driver-for-zeroplus-devices.patch input-update-documentation-of-force-feedback.patch input-drop-the-remains-of-the-old-ff-interface.patch input-drop-the-old-pid-driver.patch input-use-enospc-instead-of-enomem-in-iforce-when-device-full.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html