/linux-2.6.39/Documentation/w1/slaves/ |
D | w1_ds2423 | 38 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 39 …2 00 00 00 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 40 …9 c6 5d 18 00 00 00 00 04 37 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 41 …05 00 00 00 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff… 44 …2 00 00 00 00 00 00 00 6d 38 00 ff ff 00 00 fe ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 45 …2 00 00 22 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 46 …1 61 5d 19 00 00 00 00 df 0b 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff … 47 …05 00 00 20 00 00 00 00 8d 39 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff…
|
/linux-2.6.39/drivers/input/ |
D | ff-core.c | 38 static int check_effect_access(struct ff_device *ff, int effect_id, in check_effect_access() argument 41 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access() 42 !ff->effect_owners[effect_id]) in check_effect_access() 45 if (file && ff->effect_owners[effect_id] != file) in check_effect_access() 65 static int compat_effect(struct ff_device *ff, struct ff_effect *effect) in compat_effect() argument 71 if (!test_bit(FF_PERIODIC, ff->ffbit)) in compat_effect() 109 struct ff_device *ff = dev->ff; in input_ff_upload() local 131 if (!test_bit(effect->type, ff->ffbit)) { in input_ff_upload() 132 ret = compat_effect(ff, effect); in input_ff_upload() 137 mutex_lock(&ff->mutex); in input_ff_upload() [all …]
|
D | ff-memless.c | 209 static int get_compatible_type(struct ff_device *ff, int effect_type) in get_compatible_type() argument 212 if (test_bit(effect_type, ff->ffbit)) in get_compatible_type() 215 if (effect_type == FF_PERIODIC && test_bit(FF_RUMBLE, ff->ffbit)) in get_compatible_type() 354 effect_type = get_compatible_type(ml->dev->ff, effect->type); in ml_get_combo_effect() 405 struct ml_device *ml = dev->ff->private; in ml_effect_timer() 420 struct ml_device *ml = dev->ff->private; in ml_ff_set_gain() 436 struct ml_device *ml = dev->ff->private; in ml_ff_playback() 467 struct ml_device *ml = dev->ff->private; in ml_ff_upload() 487 static void ml_ff_destroy(struct ff_device *ff) in ml_ff_destroy() argument 489 struct ml_device *ml = ff->private; in ml_ff_destroy() [all …]
|
D | Makefile | 8 input-core-y := input.o input-compat.o input-mt.o ff-core.o 10 obj-$(CONFIG_INPUT_FF_MEMLESS) += ff-memless.o
|
/linux-2.6.39/Documentation/ |
D | mca.txt | 267 Slot 1: ff 8e f1 fc a0 ff ff ff IBM SCSI Adapter w/Cache 268 Slot 2: ff ff ff ff ff ff ff ff 269 Slot 3: 1f 0f 81 3b bf b6 ff ff 270 Slot 4: ff ff ff ff ff ff ff ff 272 Slot 6: ff ff ff ff ff ff ff ff 273 Slot 7: 42 60 ff 08 ff ff ff ff 3Com 3c523 Etherlink/MC 274 Slot 8: ff ff ff ff ff ff ff ff 275 Video : ff ff ff ff ff ff ff ff 276 SCSI : ff ff ff ff ff ff ff ff 283 POS: ff 8e f1 fc a0 ff ff ff [all …]
|
/linux-2.6.39/fs/fuse/ |
D | file.c | 52 struct fuse_file *ff; in fuse_file_alloc() local 54 ff = kmalloc(sizeof(struct fuse_file), GFP_KERNEL); in fuse_file_alloc() 55 if (unlikely(!ff)) in fuse_file_alloc() 58 ff->fc = fc; in fuse_file_alloc() 59 ff->reserved_req = fuse_request_alloc(); in fuse_file_alloc() 60 if (unlikely(!ff->reserved_req)) { in fuse_file_alloc() 61 kfree(ff); in fuse_file_alloc() 65 INIT_LIST_HEAD(&ff->write_entry); in fuse_file_alloc() 66 atomic_set(&ff->count, 0); in fuse_file_alloc() 67 RB_CLEAR_NODE(&ff->polled_node); in fuse_file_alloc() [all …]
|
D | cuse.c | 141 struct fuse_file *ff = file->private_data; in cuse_release() local 142 struct fuse_conn *fc = ff->fc; in cuse_release() 144 fuse_sync_release(ff, file->f_flags); in cuse_release() 153 struct fuse_file *ff = file->private_data; in cuse_file_ioctl() local 154 struct cuse_conn *cc = fc_to_cc(ff->fc); in cuse_file_ioctl() 166 struct fuse_file *ff = file->private_data; in cuse_file_compat_ioctl() local 167 struct cuse_conn *cc = fc_to_cc(ff->fc); in cuse_file_compat_ioctl()
|
D | fuse_i.h | 297 struct fuse_file *ff; member 578 struct fuse_file *fuse_file_get(struct fuse_file *ff); 579 void fuse_file_free(struct fuse_file *ff); 582 void fuse_sync_release(struct fuse_file *ff, int flags);
|
D | dir.c | 383 struct fuse_file *ff; in fuse_create_open() local 403 ff = fuse_file_alloc(fc); in fuse_create_open() 404 if (!ff) in fuse_create_open() 445 ff->fh = outopen.fh; in fuse_create_open() 446 ff->nodeid = outentry.nodeid; in fuse_create_open() 447 ff->open_flags = outopen.open_flags; in fuse_create_open() 452 fuse_sync_release(ff, flags); in fuse_create_open() 462 fuse_sync_release(ff, flags); in fuse_create_open() 465 file->private_data = fuse_file_get(ff); in fuse_create_open() 470 fuse_file_free(ff); in fuse_create_open() [all …]
|
D | dev.c | 143 struct fuse_file *ff = file->private_data; in get_reserved_req() local 146 wait_event(fc->reserved_req_waitq, ff->reserved_req); in get_reserved_req() 148 if (ff->reserved_req) { in get_reserved_req() 149 req = ff->reserved_req; in get_reserved_req() 150 ff->reserved_req = NULL; in get_reserved_req() 166 struct fuse_file *ff = file->private_data; in put_reserved_req() local 170 BUG_ON(ff->reserved_req); in put_reserved_req() 171 ff->reserved_req = req; in put_reserved_req() 1918 struct fuse_file *ff; in end_polls() local 1919 ff = rb_entry(p, struct fuse_file, polled_node); in end_polls() [all …]
|
/linux-2.6.39/arch/m68k/ifpsp060/ |
D | fplsp.sa | 74 dc.l $660861ff,$00007124,$60220c01,$00026608 75 dc.l $61ff0000,$6d226014,$0c010003,$660861ff 76 dc.l $00006f4c,$600661ff,$00002f8e,$4cee0303 83 dc.l $660861ff,$00002d3e,$60300c01,$00016608 84 dc.l $61ff0000,$70866022,$0c010002,$660861ff 93 dc.l $660861ff,$00002c9e,$60300c01,$00016608 94 dc.l $61ff0000,$6fe66022,$0c010002,$660861ff 103 dc.l $2c0e6030,$0c010001,$660861ff,$00006fc8 105 dc.l $0c010003,$660861ff,$00006d74,$600661ff 112 dc.l $ff631d41,$ff4e4a01,$660861ff,$00002b70 [all …]
|
D | pfpsp.sa | 72 dc.l $000767ff,$fffffc0c,$f22fa400,$00083f7c 81 dc.l $00002900,$0c000006,$660661ff,$00002864 103 dc.l $000660ff,$fffffb0e,$4e56ff40,$f32eff6c 116 dc.l $0c000006,$660661ff,$00002638,$1d40ff4f 134 dc.l $02a87fff,$ffff0004,$671861ff,$000024cc 155 dc.l $00ccdffc,$000000b8,$08170007,$662860ff 159 dc.l $000860ff,$fffff78e,$04800000,$0018303b 185 dc.l $000061ff,$00005548,$41eeff6c,$61ff0000 189 dc.l $660661ff,$000021ac,$1d40ff4f,$4280102e 196 dc.l $0303ff9c,$4e5e0817,$00076600,$012660ff [all …]
|
D | ftest.sa | 16 dc.l $fea0487b,$01700000,$058061ff,$000015fc 38 dc.l $01700000,$105661ff,$000014a0,$61ff0000 40 dc.l $00000da2,$61ff0000,$148261ff,$00000da8 94 dc.l $103861ff,$0000103a,$4a0066ff,$0000102a 201 dc.l $66ff0000,$098461ff,$00000986,$4a0066ff 270 dc.l $050a4a00,$66ff0000,$053061ff,$00000532 284 dc.l $66ff0000,$045461ff,$00000456,$4a0066ff 349 dc.l $66ff0000,$004461ff,$00000046,$4a0066ff
|
/linux-2.6.39/drivers/input/joystick/iforce/ |
D | iforce-main.c | 224 for (i = 0; i < dev->ff->max_effects; i++) { in iforce_close() 259 struct ff_device *ff; in iforce_init_device() local 430 for (i = 0; iforce->type->ff[i] >= 0; i++) in iforce_init_device() 431 set_bit(iforce->type->ff[i], input_dev->ffbit); in iforce_init_device() 437 ff = input_dev->ff; in iforce_init_device() 438 ff->upload = iforce_upload_effect; in iforce_init_device() 439 ff->erase = iforce_erase_effect; in iforce_init_device() 440 ff->set_gain = iforce_set_gain; in iforce_init_device() 441 ff->set_autocenter = iforce_set_autocenter; in iforce_init_device() 442 ff->playback = iforce_playback; in iforce_init_device()
|
D | Makefile | 9 iforce-y := iforce-ff.o iforce-main.o iforce-packets.o
|
D | iforce-packets.c | 141 if (!iforce->dev->ff) in mark_core_as_ready() 144 for (i = 0; i < iforce->dev->ff->max_effects; ++i) { in mark_core_as_ready()
|
/linux-2.6.39/drivers/pci/pcie/aer/ |
D | aerdrv_acpi.c | 43 int ff = 0; in aer_hest_parse() local 64 ff = !!(p->flags & ACPI_HEST_FIRMWARE_FIRST); in aer_hest_parse() 67 ff = !!(p->flags & ACPI_HEST_FIRMWARE_FIRST); in aer_hest_parse() 68 info->firmware_first = ff; in aer_hest_parse()
|
/linux-2.6.39/drivers/video/ |
D | pxa168fb.h | 407 #define DMA_FF_UNDERFLOW_ENA(ff) ((ff) << 29) argument 413 #define GRA_FF_UNDERFLOW_ENA(ff) ((ff) << 25) argument 440 #define DMA_FF_UNDERFLOW(ff) ((ff) << 29) argument 446 #define GRA_FF_UNDERFLOW(ff) ((ff) << 25) argument
|
/linux-2.6.39/Documentation/trace/ |
D | tracepoint-analysis.txt | 310 12.40 : 34eee: 66 0f 7f 80 40 ff ff movdqa %xmm0,-0xc0(%eax) 311 0.00 : 34ef5: ff 312 12.40 : 34ef6: 66 0f 7f 80 50 ff ff movdqa %xmm0,-0xb0(%eax) 313 0.00 : 34efd: ff 314 12.39 : 34efe: 66 0f 7f 80 60 ff ff movdqa %xmm0,-0xa0(%eax) 315 0.00 : 34f05: ff 316 12.67 : 34f06: 66 0f 7f 80 70 ff ff movdqa %xmm0,-0x90(%eax) 317 0.00 : 34f0d: ff
|
/linux-2.6.39/drivers/hid/ |
D | hid-lgff.c | 42 const signed short *ff; member 168 ff_bits = devices[i].ff; in lgff_init() 181 dev->ff->set_autocenter = hid_lgff_set_autocenter; in lgff_init()
|
/linux-2.6.39/drivers/hid/usbhid/ |
D | hid-pidff.c | 525 struct pidff_device *pidff = dev->ff->private; in pidff_playback() 547 struct pidff_device *pidff = dev->ff->private; in pidff_erase_effect() 567 struct pidff_device *pidff = dev->ff->private; in pidff_upload_effect() 718 struct pidff_device *pidff = dev->ff->private; in pidff_set_gain() 756 struct pidff_device *pidff = dev->ff->private; in pidff_set_autocenter() 1238 struct ff_device *ff; in hid_pidff_init() local 1308 ff = dev->ff; in hid_pidff_init() 1309 ff->private = pidff; in hid_pidff_init() 1310 ff->upload = pidff_upload_effect; in hid_pidff_init() 1311 ff->erase = pidff_erase_effect; in hid_pidff_init() [all …]
|
/linux-2.6.39/Documentation/usb/ |
D | acm.txt | 86 I: If#= 0 Alt= 0 #EPs= 3 Cls=ff(vend.) Sub=ff Prot=ff Driver=acm 99 driver is used for the device. If you see only Cls=ff(vend.) then you're out
|
/linux-2.6.39/drivers/input/misc/ |
D | uinput.c | 259 dev->ff->upload = uinput_dev_upload_effect; in uinput_create_device() 260 dev->ff->erase = uinput_dev_erase_effect; in uinput_create_device() 261 dev->ff->playback = uinput_dev_playback; in uinput_create_device() 262 dev->ff->set_gain = uinput_dev_set_gain; in uinput_create_device() 263 dev->ff->set_autocenter = uinput_dev_set_autocenter; in uinput_create_device()
|
/linux-2.6.39/block/ |
D | blk-merge.c | 328 unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK; in blk_rq_set_mixed_merge() local 341 (bio->bi_rw & REQ_FAILFAST_MASK) != ff); in blk_rq_set_mixed_merge() 342 bio->bi_rw |= ff; in blk_rq_set_mixed_merge()
|
/linux-2.6.39/Documentation/input/ |
D | iforce-protocol.txt | 150 OP= ff 153 ff 01 QUERY [INDEX] CHECKSUM 162 ff 03 42 03 e8 CS would mean that the device has 1000 bytes of ram available. 168 ff 02 4e 14 CS would stand for 20 effects.
|