clear up confusion between ids and adapters (Kenneth Aafloy)

Signed-off-by: Johannes Stezenbach <[EMAIL PROTECTED]>

 dvbdev.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

Index: linux-2.6.12-rc1-mm1/drivers/media/dvb/dvb-core/dvbdev.c
===================================================================
--- linux-2.6.12-rc1-mm1.orig/drivers/media/dvb/dvb-core/dvbdev.c       
2005-03-22 00:27:13.000000000 +0100
+++ linux-2.6.12-rc1-mm1/drivers/media/dvb/dvb-core/dvbdev.c    2005-03-22 
00:27:34.000000000 +0100
@@ -51,9 +51,10 @@ static const char * const dnames[] = {
        "net", "osd"
 };
 
-#define DVB_MAX_IDS              6
-#define nums2minor(num,type,id)  ((num << 6) | (id << 4) | type)
-#define MAX_DVB_MINORS           (DVB_MAX_IDS*64)
+#define DVB_MAX_ADAPTERS       8
+#define DVB_MAX_IDS            4
+#define nums2minor(num,type,id)        ((num << 6) | (id << 4) | type)
+#define MAX_DVB_MINORS         (DVB_MAX_ADAPTERS*64)
 
 static struct class_simple *dvb_class;
 
@@ -267,7 +268,7 @@ static int dvbdev_get_free_adapter_num (
 {
        int num = 0;
 
-       while (1) {
+       while (num < DVB_MAX_ADAPTERS) {
                struct list_head *entry;
                list_for_each (entry, &dvb_adapter_list) {
                        struct dvb_adapter *adap;

--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to