Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751803Ab2KRJea (ORCPT ); Sun, 18 Nov 2012 04:34:30 -0500 Received: from [93.179.225.50] ([93.179.225.50]:52428 "EHLO shrek.podlesie.net" rhost-flags-FAIL-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751466Ab2KRJe3 (ORCPT ); Sun, 18 Nov 2012 04:34:29 -0500 From: Krzysztof Mazur To: dmitry.torokhov@gmail.com Cc: jkosina@suse.cz, pavel@ucw.cz, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Krzysztof Mazur Subject: [PATCH] Input: mousedev - fix /dev/input/mice minor number Date: Sun, 18 Nov 2012 10:32:55 +0100 Message-Id: <1353231175-2344-1-git-send-email-krzysiek@podlesie.net> X-Mailer: git-send-email 1.8.0.283.gc57d856 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1182 Lines: 36 The mousedev always used relative minor number 31 for MOUSEDEV_MIX (/dev/input/mice), but alsolute minor number was 63. Commit 7f8d4cad1e4e11a45d02bd6e024cc2812963c38a ("Input: extend the number of event (and other) devices") changed it to 31 alsolute minor number. Signed-off-by: Krzysztof Mazur --- Tested on Linux 3.7-rc6 + small patch. After fixing this I found similar problem: http://marc.info/?l=linux-kernel&m=135298612202547&w=2 drivers/input/mousedev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/mousedev.c b/drivers/input/mousedev.c index 8f02e3d..fc711a8 100644 --- a/drivers/input/mousedev.c +++ b/drivers/input/mousedev.c @@ -13,7 +13,7 @@ #define MOUSEDEV_MINOR_BASE 32 #define MOUSEDEV_MINORS 32 -#define MOUSEDEV_MIX 31 +#define MOUSEDEV_MIX (MOUSEDEV_MINOR_BASE + 31) #include #include -- 1.8.0.283.gc57d856 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/