Lines Matching defs:config

619 # define LMCIOCGCFG		_IOWR('i', 241, struct config)
620 # define LMCIOCSCFG _IOW('i', 242, struct config)
816 /* sc->config is the READ/WRITE configuration of the card. */
818 struct config
825 u_int32_t time_slots; /* T1: 64Kb time slot config */
827 u_int32_t scrambler; /* T3: payload scrambler config */
873 #define FORMAT_T1ANY ((sc->config.format & 1)==1)
874 #define FORMAT_E1ANY ((sc->config.format & 1)==0)
875 #define FORMAT_E1CAS ((sc->config.format & 0x11)==0x10)
876 #define FORMAT_E1CRC ((sc->config.format & 0x09)==0x08)
877 #define FORMAT_E1NONE (sc->config.format == CFG_FORMAT_E1NONE)
878 #define FORMAT_T1ESF (sc->config.format == CFG_FORMAT_T1ESF)
879 #define FORMAT_T1SF (sc->config.format == CFG_FORMAT_T1SF)
880 #define FORMAT_T3CPAR (sc->config.format == CFG_FORMAT_T3CPAR)
920 #define IOCTL_RW_PCI 1 /* RW: Tulip PCI config registers */
1054 void (* config)(softc_t *);
1109 pci_devaddr_t cfgbase; /* base address of PCI config regs */
1194 struct config config; /* driver config lmcconfig can read/write */
1195 struct card *card; /* card methods: config, ioctl, watchdog */
1221 # define DRIVER_DEBUG ((sc->config.debug) || (sc->ifp->if_flags & IFF_DEBUG))
1277 # define DRIVER_DEBUG ((sc->config.debug) || (sc->ifp->if_flags & IFF_DEBUG))
1306 # define DRIVER_DEBUG ((sc->config.debug) || (sc->ifp->if_flags & IFF_DEBUG))
1341 # define DRIVER_DEBUG ((sc->config.debug) || (sc->ifp->if_flags & IFF_DEBUG))
1393 # define DRIVER_DEBUG ((sc->config.debug) || (sc->net_dev->flags & IFF_DEBUG))
1590 static void config_proto(softc_t *, struct config *);