Searched refs:type (Results 1 - 25 of 3179) sorted by relevance

1234567891011>>

/drivers/s390/char/
H A Dsclp_cpi_sys.h13 const char *type, u64 level);
/drivers/staging/android/
H A Dandroid_alarm.h48 #define ANDROID_ALARM_CLEAR(type) _IO('a', 0 | ((type) << 4))
53 #define ALARM_IOW(c, type, size) _IOW('a', (c) | ((type) << 4), size)
55 #define ANDROID_ALARM_SET(type) ALARM_IOW(2, type, struct timespec)
56 #define ANDROID_ALARM_SET_AND_WAIT(type) ALARM_IOW(3, type, struct timespec)
57 #define ANDROID_ALARM_GET_TIME(type) ALARM_IOW(4, type, struc
[all...]
/drivers/md/
H A Ddm-exception-store.c24 struct dm_exception_store_type *type; local
26 list_for_each_entry(type, &_exception_store_types, list)
27 if (!strcmp(name, type->name))
28 return type;
35 struct dm_exception_store_type *type; local
39 type = __find_exception_store_type(name);
41 if (type && !try_module_get(type->module))
42 type = NULL;
46 return type;
75 struct dm_exception_store_type *type; local
103 put_type(struct dm_exception_store_type *type) argument
110 dm_exception_store_type_register(struct dm_exception_store_type *type) argument
125 dm_exception_store_type_unregister(struct dm_exception_store_type *type) argument
202 struct dm_exception_store_type *type = NULL; local
[all...]
/drivers/staging/cxt1e1/
H A Dsbe_promformat.h71 #define STRUCT_OFFSET(type, symbol) ((long)&(((type *)0)->symbol))
76 * For diagnostic and failure purposes, do not create a type 0x00 or a
77 * type 0xff
85 /****** bit fields for a type 1 formatted seeprom **************************/
88 char type; /* 0x00 */ member in struct:__anon5172
100 /****** bit fields for a type 2 formatted seeprom **************************/
103 char type; /* 0x00 */ member in struct:__anon5173
/drivers/tty/serial/
H A Dsh-sci.h5 #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
6 #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_RDF)
7 #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
8 #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
9 #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
10 #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
28 # define SCxSR_RDxF_CLEAR(port) (((port)->type == PORT_SCI) ? 0xbc : 0x00fc)
29 # define SCxSR_ERROR_CLEAR(port) (((port)->type == PORT_SCI) ? 0xc4 : 0x0073)
30 # define SCxSR_TDxE_CLEAR(port) (((port)->type == PORT_SCI) ? 0x78 : 0x00df)
31 # define SCxSR_BREAK_CLEAR(port) (((port)->type
[all...]
/drivers/usb/storage/
H A Dlibusual.c41 * @type: the module type as an integer
43 void usb_usual_set_present(int type) argument
48 if (type <= 0 || type >= 3)
50 st = &stat[type];
57 void usb_usual_clear_present(int type) argument
62 if (type <= 0 || type >= 3)
64 st = &stat[type];
98 unsigned long type; local
153 int type = (unsigned long) arg; local
[all...]
/drivers/gpu/drm/gma500/
H A Dpsb_intel_display.h23 bool psb_intel_pipe_has_type(struct drm_crtc *crtc, int type);
25 u16 *green, u16 *blue, uint32_t type, uint32_t size);
/drivers/media/common/tuners/
H A Dtuner-simple.h27 unsigned int type);
32 unsigned int type)
29 simple_tuner_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c_adap, u8 i2c_addr, unsigned int type) argument
H A Dtuner-xc2028.c77 unsigned int type; member in struct:firmware_description
85 unsigned int type; member in struct:firmware_properties
174 static void dump_firm_type_and_int_freq(unsigned int type, u16 int_freq) argument
176 if (type & BASE)
178 if (type & INIT1)
180 if (type & F8MHZ)
182 if (type & MTS)
184 if (type & D2620)
186 if (type & D2633)
188 if (type
339 __u32 type, size; local
427 seek_firmware(struct dvb_frontend *fe, unsigned int type, v4l2_std_id *id) argument
535 load_firmware(struct dvb_frontend *fe, unsigned int type, v4l2_std_id *id) argument
643 load_scode(struct dvb_frontend *fe, unsigned int type, v4l2_std_id *id, __u16 int_freq, int scode) argument
705 check_firmware(struct dvb_frontend *fe, unsigned int type, v4l2_std_id std, __u16 int_freq) argument
931 generic_set_freq(struct dvb_frontend *fe, u32 freq , enum v4l2_tuner_type new_type, unsigned int type, v4l2_std_id std, u16 int_freq) argument
1081 unsigned int type=0; local
1114 unsigned int type=0; local
[all...]
/drivers/staging/iio/
H A Devents.h49 * @type: Type of the event. Should be one enum iio_event_type.
56 type, chan, chan1, chan2) \
57 (((u64)type << 56) | ((u64)diff << 55) | \
64 #define IIO_EV_BIT(type, direction) \
65 (1 << (type*IIO_EV_DIR_MAX + direction))
72 * @type: Type of the event. Should be one enum iio_event_type.
77 type, direction) \
78 IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0)
84 * @type: Type of the event. Should be one enum iio_event_type.
88 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, directio
[all...]
/drivers/gpu/ion/
H A Dion_heap.c25 switch (heap_data->type) {
36 pr_err("%s: Invalid heap type %d\n", __func__,
37 heap_data->type);
42 pr_err("%s: error creating heap %s type %d base %lu size %u\n",
43 __func__, heap_data->name, heap_data->type,
58 switch (heap->type) {
69 pr_err("%s: Invalid heap type %d\n", __func__,
70 heap->type);
/drivers/media/video/ivtv/
H A Divtv-routing.c66 u32 type; local
71 type = itv->card->video_inputs[inp].video_type;
73 if (type == IVTV_CARD_INPUT_VID_TUNER) {
75 } else if (type < IVTV_CARD_INPUT_COMPOSITE1) {
86 if (type == IVTV_CARD_INPUT_VID_TUNER ||
87 type >= IVTV_CARD_INPUT_COMPOSITE1) {
102 if (type > IVTV_CARD_INPUT_VID_TUNER &&
103 type < IVTV_CARD_INPUT_COMPOSITE1) {
111 if (type == IVTV_CARD_INPUT_VID_TUNER ||
112 itv->card->type
[all...]
/drivers/acpi/acpica/
H A Dexresolv.c132 * DESCRIPTION: Retrieve the value from an internal object. The Reference type
152 switch (stack_desc->common.type) {
254 if ((stack_desc->reference.node->type ==
256 || (stack_desc->reference.node->type ==
276 "Unknown Reference type 0x%X in %p",
300 stack_desc, stack_desc->common.type));
325 * return_type - Where the object type is returned
330 * DESCRIPTION: Return the base object and type. Traverse a reference list if
343 acpi_object_type type; local
352 type
[all...]
H A Drslist.c93 if (aml_resource->common_serial_bus.type >
101 [aml_resource->common_serial_bus.type];
174 if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
176 "Invalid descriptor type (0x%X) in resource list",
177 resource->type));
183 if (resource->type == ACPI_RESOURCE_TYPE_SERIAL_BUS) {
184 if (resource->data.common_serial_bus.type >
192 [resource->data.common_serial_bus.type];
196 acpi_gbl_set_resource_dispatch[resource->type];
202 resource->type));
[all...]
H A Dnsaccess.c110 status = acpi_ns_lookup(NULL, init_val->name, init_val->type,
141 acpi_ut_create_internal_object(init_val->type);
152 switch (init_val->type) {
225 "Unsupported initial type value 0x%X",
226 init_val->type));
235 obj_desc->common.type);
282 acpi_object_type type,
339 while (!acpi_ns_opens_scope(prefix_node->type) &&
340 prefix_node->type != ACPI_TYPE_ANY) {
346 /* Save type
280 acpi_ns_lookup(union acpi_generic_state *scope_info, char *pathname, acpi_object_type type, acpi_interpreter_mode interpreter_mode, u32 flags, struct acpi_walk_state *walk_state, struct acpi_namespace_node **return_node) argument
[all...]
/drivers/tty/serial/8250/
H A D8250_acorn.c31 unsigned int type; member in struct:serial_card_type
45 struct serial_card_type *type = id->data; local
54 info->num_ports = type->num_ports;
56 bus_addr = ecard_resource_start(ec, type->type);
57 info->vaddr = ecardm_iomap(ec, type->type, 0, 0);
68 port.uartclk = type->uartclk;
74 port.membase = info->vaddr + type->offset[i];
75 port.mapbase = bus_addr + type
[all...]
/drivers/media/video/cx88/
H A Dcx88-cards.c41 MODULE_PARM_DESC(tuner,"tuner type");
42 MODULE_PARM_DESC(radio,"radio tuner type");
43 MODULE_PARM_DESC(card,"card type");
77 .type = CX88_VMUX_COMPOSITE1,
80 .type = CX88_VMUX_COMPOSITE2,
83 .type = CX88_VMUX_COMPOSITE3,
86 .type = CX88_VMUX_COMPOSITE4,
98 .type = CX88_VMUX_TELEVISION,
102 .type = CX88_VMUX_DEBUG,
106 .type
[all...]
/drivers/mmc/core/
H A Dbus.c35 switch (card->type) {
50 __ATTR(type, S_IRUGO, mmc_type_show, NULL),
68 const char *type; local
71 switch (card->type) {
73 type = "MMC";
76 type = "SD";
79 type = "SDIO";
82 type = "SDcombo";
85 type = NULL;
88 if (type) {
235 mmc_alloc_card(struct mmc_host *host, struct device_type *type) argument
261 const char *type; local
[all...]
/drivers/net/ethernet/cisco/enic/
H A Drq_enet_desc.h44 u64 address, u8 type, u16 length)
48 ((type & RQ_ENET_TYPE_MASK) << RQ_ENET_LEN_BITS));
52 u64 *address, u8 *type, u16 *length)
56 *type = (u8)((le16_to_cpu(desc->length_type) >> RQ_ENET_LEN_BITS) &
43 rq_enet_desc_enc(struct rq_enet_desc *desc, u64 address, u8 type, u16 length) argument
51 rq_enet_desc_dec(struct rq_enet_desc *desc, u64 *address, u8 *type, u16 *length) argument
H A Dvnic_vic.c27 const u8 type)
39 vp->type = type;
50 int vic_provinfo_add_tlv(struct vic_provinfo *vp, u16 type, u16 length, argument
65 tlv->type = htons(type);
26 vic_provinfo_alloc(gfp_t flags, const u8 *oui, const u8 type) argument
/drivers/net/wireless/bcmdhd/
H A Ddngl_wlhdr.h31 uint8 type; /* Header type */ member in struct:wl_header
/drivers/net/wireless/rt2x00/
H A Drt2x00leds.h40 enum led_type type; member in struct:rt2x00_led
/drivers/scsi/fnic/
H A Drq_enet_desc.h42 u64 address, u8 type, u16 length)
46 ((type & RQ_ENET_TYPE_MASK) << RQ_ENET_LEN_BITS));
50 u64 *address, u8 *type, u16 *length)
54 *type = (u8)((le16_to_cpu(desc->length_type) >> RQ_ENET_LEN_BITS) &
41 rq_enet_desc_enc(struct rq_enet_desc *desc, u64 address, u8 type, u16 length) argument
49 rq_enet_desc_dec(struct rq_enet_desc *desc, u64 *address, u8 *type, u16 *length) argument
/drivers/media/video/saa7164/
H A Dsaa7164-cards.c65 .type = SAA7164_UNIT_EEPROM,
72 .type = SAA7164_UNIT_TUNER,
79 .type = SAA7164_UNIT_TUNER,
86 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
93 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
111 .type = SAA7164_UNIT_EEPROM,
118 .type = SAA7164_UNIT_TUNER,
125 .type = SAA7164_UNIT_DIGITAL_DEMODULATOR,
132 .type = SAA7164_UNIT_TUNER,
139 .type
[all...]
/drivers/net/ethernet/brocade/bna/
H A Dbfa_defs_mfg_comm.h48 * Manufacturing card type
51 BFA_MFG_TYPE_CB_MAX = 825, /*!< Crossbow card type max */
68 BFA_MFG_TYPE_INVALID = 0, /*!< Invalid card type */
76 #define bfa_mfg_is_mezz(type) (( \
77 (type) == BFA_MFG_TYPE_JAYHAWK || \
78 (type) == BFA_MFG_TYPE_WANCHESE || \
79 (type) == BFA_MFG_TYPE_ASTRA || \
80 (type) == BFA_MFG_TYPE_LIGHTNING_P0 || \
81 (type) == BFA_MFG_TYPE_LIGHTNING || \
82 (type)
[all...]

Completed in 642 milliseconds

1234567891011>>