Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752642AbbKNDFe (ORCPT ); Fri, 13 Nov 2015 22:05:34 -0500 Received: from cmccmta1.chinamobile.com ([221.176.66.79]:4354 "EHLO cmccmta1.chinamobile.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751184AbbKNDFd (ORCPT ); Fri, 13 Nov 2015 22:05:33 -0500 X-Greylist: delayed 545 seconds by postgrey-1.27 at vger.kernel.org; Fri, 13 Nov 2015 22:05:32 EST X-RM-TRANSID: 2ee45646a2d8001-2ca1c X-RM-SPAM-FLAG: 00000000 X-RM-TRANSID: 2eea5646a2d70de-9d976 From: Yaowei Bai To: viro@zeniv.linux.org.uk, akpm@linux-foundation.org, mikulas@twibright.com, ooo@electrozaur.com Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 2/2] include/linux/kdev_t.h: remove new_valid_dev() Date: Sat, 14 Nov 2015 10:54:23 +0800 Message-Id: <1447469663-3631-2-git-send-email-baiyaowei@cmss.chinamobile.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1447469663-3631-1-git-send-email-baiyaowei@cmss.chinamobile.com> References: <1447469663-3631-1-git-send-email-baiyaowei@cmss.chinamobile.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 909 Lines: 36 As all new_valid_dev() checks have been removed it's time to drop new_valid_dev() itself. No functional change. Signed-off-by: Yaowei Bai --- include/linux/kdev_t.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/linux/kdev_t.h b/include/linux/kdev_t.h index 052c7b3..8e9e288b 100644 --- a/include/linux/kdev_t.h +++ b/include/linux/kdev_t.h @@ -35,11 +35,6 @@ static inline dev_t old_decode_dev(u16 val) return MKDEV((val >> 8) & 255, val & 255); } -static inline bool new_valid_dev(dev_t dev) -{ - return 1; -} - static inline u32 new_encode_dev(dev_t dev) { unsigned major = MAJOR(dev); -- 1.9.1 -- 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/