From 51eb43efdaa323eca92b47be2b0b4ecec07bedb5 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Fri, 13 Sep 2013 13:31:55 +0200 Subject: remove preprocessor comments The first one is a message that name lookup has been called, which I think is safe to remove, or maybe add #if DEBUG. Second one is a alternate calculation that I doubt it will ever be used, so I think it's safe to remove it. * device/dev_name.c: Remove preprocessor comments. --- device/dev_name.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'device/dev_name.c') diff --git a/device/dev_name.c b/device/dev_name.c index f970cf6..b560b0a 100644 --- a/device/dev_name.c +++ b/device/dev_name.c @@ -104,10 +104,6 @@ boolean_t dev_name_lookup(name, ops, unit) int slice_num = 0; -#if 0 - printf("lookup on name %s\n",name); -#endif /* 0 */ - /* * Find device type name (characters before digit) */ @@ -184,9 +180,6 @@ boolean_t dev_name_lookup(name, ops, unit) * Minor number is *unit + letter. * NOW it is slice result + letter */ -#if 0 - *unit = *unit * j + (c - 'a' +1); /* +1 to start 'a' at 1 */ -#endif /* 0 */ *unit += (c - 'a' +1); } } -- cgit v1.2.3