spin_unlock_irqrestore(&cs->lock, flags);
        setup_timer(&cs->timer, timer_tick, (unsigned long) cs);
        cs->timer.expires = jiffies + msecs_to_jiffies(GIG_TICK);
-       /* FIXME: can jiffies increase too much until the timer is added?
-        * Same problem(?) with mod_timer() in timer_tick(). */
        add_timer(&cs->timer);
 
        gig_dbg(DEBUG_INIT, "cs initialized");
 
                                gig_dbg(DEBUG_EVENT, "Scheduling PC_CIDMODE");
                                cs->commands_pending = 1;
                                return;
-#ifdef GIG_MAYINITONDIAL
                        case M_UNKNOWN:
                                schedule_init(cs, MS_INIT);
                                return;
-#endif
                        }
                        bcs->at_state.pending_commands &= ~PC_CID;
                        cs->curchannel = bcs->channel;
-#ifdef GIG_RETRYCID
                        cs->retry_count = 2;
-#else
-                       cs->retry_count = 1;
-#endif
                        schedule_sequence(cs, &cs->at_state, SEQ_CID);
                        return;
                }
 
 
 #define RBUFSIZE 8192
 
-/* compile time options */
-#define GIG_MAJOR 0
-
-#define GIG_MAYINITONDIAL
-#define GIG_RETRYCID
-#define GIG_X75
-
 #define GIG_TICK 100           /* in milliseconds */
 
 /* timeout values (unit: 1 sec) */
 
        iif->maxbufsize = MAX_BUF_SIZE;
        iif->features = ISDN_FEATURE_L2_TRANS |
                ISDN_FEATURE_L2_HDLC |
-#ifdef GIG_X75
                ISDN_FEATURE_L2_X75I |
-#endif
                ISDN_FEATURE_L3_TRANS |
                ISDN_FEATURE_P_EURO;
        iif->hl_hdrlen = HW_HDR_LEN;            /* Area for storing ack */
 
                goto enomem;
 
        tty->magic =            TTY_DRIVER_MAGIC,
-       tty->major =            GIG_MAJOR,
        tty->type =             TTY_DRIVER_TYPE_SERIAL,
        tty->subtype =          SERIAL_TYPE_NORMAL,
        tty->flags =            TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;