Searched refs:Type (Results 1 - 25 of 30) sorted by relevance

12

/drivers/staging/bcm/
H A DDebug.h18 * Type and SubType are treated as bitmasks.
157 * appear (of course, iff global debug flag is ON and we match the Type and SubType).
193 unsigned int Subtype, Type; member in struct:__anon5060
201 /* A bitmap of 32 bits for Subtype per Type.
203 * corresponding to valid Type values. Hence we use the 'Type' field
218 #define BCM_DEBUG_PRINT(Adapter, Type, SubType, dbg_level, string, args...) \
220 if (DBG_TYPE_PRINTK == Type) \
224 (Type & Adapter->stDebugState.type) && \
225 (SubType & Adapter->stDebugState.subtype[Type])) { \
[all...]
H A DBcmchar.c1238 BCM_DEBUG_PRINT (Adapter, DBG_TYPE_PRINTK, 0, 0, "IOCTL_BCM_SET_DEBUG: OnOff=%d Type = 0x%x ",
1239 sUserDebugState.OnOff, sUserDebugState.Type);
1245 Adapter->stDebugState.type |= sUserDebugState.Type;
1246 /* Subtype: A bitmap of 32 bits for Subtype per Type.
1248 * corresponding to valid Type values. Hence we can use the 'Type' field
1252 Adapter->stDebugState.subtype[sUserDebugState.Type] |= sUserDebugState.Subtype;
1254 Adapter->stDebugState.subtype[sUserDebugState.Type] &= ~sUserDebugState.Subtype;
/drivers/usb/storage/
H A Dfreecom.c52 u8 Type; /* Command type. */ member in struct:freecom_cb_wrap
59 u8 Type; /* Command type. */ member in struct:freecom_xfer_wrap
66 u8 Type; /* Type + IDE register. */ member in struct:freecom_ide_out
73 u8 Type; /* Type | IDE register. */ member in struct:freecom_ide_in
159 fxfr->Type = FCM_PACKET_INPUT | 0x00;
192 fxfr->Type = FCM_PACKET_OUTPUT | 0x00;
240 fcb->Type = FCM_PACKET_ATAPI | 0x00;
282 fcb->Type
[all...]
/drivers/scsi/
H A Dhpsa_cmd.h218 u8 Type:3; member in struct:RequestBlock::__anon4385
221 } Type; member in struct:RequestBlock
240 u8 Type; member in struct:MoreErrInfo::__anon4386
H A Dhpsa.c2097 c->Request.Type.Type = TYPE_CMD;
2098 c->Request.Type.Attribute = ATTR_SIMPLE;
2101 c->Request.Type.Direction = XFER_WRITE;
2104 c->Request.Type.Direction = XFER_READ;
2107 c->Request.Type.Direction = XFER_NONE;
2115 c->Request.Type.Direction = XFER_RSVD;
2598 (iocommand.Request.Type.Direction != XFER_NONE)) {
2605 if (iocommand.Request.Type.Direction == XFER_WRITE) {
2662 if (iocommand.Request.Type
[all...]
/drivers/block/
H A Dcciss_scsi.c320 printk("Type:%d\n",cp->Request.Type.Type);
321 printk("Attr:%d\n",cp->Request.Type.Attribute);
322 printk(" Dir:%d\n",cp->Request.Type.Direction);
733 if (c->Request.Type.Type == TYPE_MSG) {
946 c->Request.Type.Type = TYPE_CMD;
947 c->Request.Type
[all...]
H A Dcciss.c1478 (iocommand.Request.Type.Direction != XFER_NONE)) {
1486 if (iocommand.Request.Type.Direction == XFER_WRITE) {
1547 if (iocommand.Request.Type.Direction == XFER_READ) {
1589 (ioc->Request.Type.Direction != XFER_NONE)) {
1622 if (ioc->Request.Type.Direction == XFER_WRITE) {
1674 if (ioc->Request.Type.Direction == XFER_READ) {
1821 if (c->Request.Type.Direction == XFER_READ)
2544 c->Request.Type.Type = cmd_type;
2554 c->Request.Type
[all...]
/drivers/media/video/saa7164/
H A Dsaa7164-bus.c33 b->Type = TYPE_BUS_PCIe;
61 dprintk(DBGLVL_BUS, " .type = %d\n", b->Type);
H A Dsaa7164-types.h79 enum tmBusType Type; member in struct:tmComResBusInfo
/drivers/isdn/hardware/eicon/
H A Ddivasync.h274 unsigned long Flag; /* |31-Type-16|15-Mask-0| */
292 unsigned long Flag; /* |31-Type-16|15-VALUE-0| */
301 unsigned long Flag; /* |31-Type-16|15-VALUE-0| */
311 unsigned long Flag; /* |31-Type-16|15-Channel-0| */
350 typedef int (*USB_SEND_REQ)(unsigned char PipeIndex, unsigned char Type, void *Data, int sizeData);
H A Dcardtype.h906 unsigned char Type; member in struct:CARD_FILES_DATA
/drivers/staging/rtl8192e/
H A Drtl819x_Qos.h299 u16 Type; member in struct:qos_tclas::_TYPE0_ETH
/drivers/staging/rtl8192u/ieee80211/
H A Drtl819x_Qos.h425 u16 Type; member in struct:_QOS_TCLAS::_TYPE0_ETH
/drivers/staging/winbond/
H A Dwbhal.h54 #define DOT_11_TYPE_OFFSET 30 /* The start offset of 802.11 Frame. Type encapsulation. */
64 /* Frame Type of Bits (2, 3)----------------------------------- */
303 u8 Type; /* 0: 802.3 1:802.11 data frame 2:802.11 management frame */ member in struct:wb35_descriptor
H A Dmds.c406 desc->Type = adapter->sMlmeFrame.DataType;
/drivers/usb/serial/
H A Dio_usbvend.h344 __u8 DescType; // Descriptor Type (per USB spec, =DEVICE type)
464 __u8 UartType; // FBD Uart Type
596 __u8 Type; // Type of descriptor member in struct:ti_i2c_desc
H A Dio_ti.c77 __u8 hardware_type; /* Type of hardware */
108 u8 TI_I2C_Type; /* Type of I2C in UMP */
673 if (rom_desc->Type == desc_type)
679 } while ((start_address < TI_MAX_I2C_SIZE) && rom_desc->Type);
750 dbg("%s Type = 0x%x", __func__, rom_desc->Type);
753 ttype = rom_desc->Type & 0x0f;
770 } while ((rom_desc->Type != I2C_DESC_TYPE_ION) &&
773 if ((rom_desc->Type != I2C_DESC_TYPE_ION) ||
901 i2c_header->Type
[all...]
/drivers/scsi/megaraid/
H A Dmegaraid_sas_fusion.h94 u8 Type:4; member in struct:RAID_CONTEXT
H A Dmegaraid_sas_fusion.c1449 io_request->RaidContext.Type = MPI2_TYPE_CUDA;
1480 io_request->RaidContext.Type = MPI2_TYPE_CUDA;
1572 io_request->RaidContext.Type = 0;
/drivers/staging/vt6656/
H A Dusbpipe.c724 ContextType = pContext->Type;
H A Ddevice.h216 CONTEXT_TYPE Type; member in struct:_USB_SEND_CONTEXT
H A Drxtx.c2221 pContext->Type = CONTEXT_MGMT_PACKET;
2317 pContext->Type = CONTEXT_MGMT_PACKET;
2700 pContext->Type = CONTEXT_MGMT_PACKET;
3019 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.wType));
3022 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.wType));
3090 pContext->Type = CONTEXT_DATA_PACKET;
3250 pContext->Type = CONTEXT_DATA_PACKET;
/drivers/input/keyboard/
H A DKconfig465 tristate "Sun Type 4 and Type 5 keyboard"
468 Say Y here if you want to use a Sun Type 4 or Type 5 keyboard,
/drivers/staging/media/go7007/
H A Dwis-sony-tuner.c48 unsigned char Type; /* unused here */ member in struct:sony_tunertype
/drivers/staging/rtl8192e/rtl8192e/
H A Dr8192E_dev.c142 u32 RegRCR, Type; local
144 Type = ((u8 *)(val))[0];
148 if (Type == true)
150 else if (Type == false)

Completed in 436 milliseconds

12