Searched refs:md (Results 101 - 125 of 239) sorted by path

12345678910

/linux-master/drivers/input/touchscreen/
H A Dili210x.c455 u8 md[2]; local
458 error = priv->chip->read_reg(client, REG_GET_MODE, &md, sizeof(md));
460 memcpy(priv->ic_mode, md, sizeof(md));
545 u8 *md = priv->ic_mode; local
548 if (md[0] == REG_GET_MODE_AP) /* Application Mode */
550 else if (md[0] == REG_GET_MODE_BL) /* BootLoader Mode */
555 return sysfs_emit(buf, "%02x.%02x:%s\n", md[0], md[
639 u8 md[2]; local
[all...]
/linux-master/drivers/md/
H A DMakefile30 md-mod-y += md.o md-bitmap.o
34 # and must come before md.o, as they each initialise
35 # themselves, and md.o may use the personalities when it
42 obj-$(CONFIG_MD_CLUSTER) += md-cluster.o
44 obj-$(CONFIG_BLK_DEV_MD) += md-mod.o
46 obj-y += md-autodetect.o
H A Ddm-audit.c40 struct mapped_device *md = dm_table_get_md(ti->table); local
41 int dev_major = dm_disk(md)->major;
42 int dev_minor = dm_disk(md)->first_minor;
H A Ddm-core.h165 void disable_discard(struct mapped_device *md);
166 void disable_write_zeroes(struct mapped_device *md);
168 static inline sector_t dm_get_size(struct mapped_device *md) argument
170 return get_capacity(md->disk);
173 static inline struct dm_stats *dm_get_stats(struct mapped_device *md) argument
175 return &md->stats;
182 static inline bool dm_emulate_zone_append(struct mapped_device *md) argument
184 if (blk_queue_is_zoned(md->queue))
185 return test_bit(DMF_EMULATE_ZONE_APPEND, &md->flags);
192 struct mapped_device *md; member in struct:dm_table
296 struct mapped_device *md; member in struct:dm_io
[all...]
H A Ddm-crypt.c1177 struct mapped_device *md = dm_table_get_md(ti->table); local
1197 DMDEBUG("%s: Integrity AEAD, tag size %u, IV size %u.", dm_device_name(md),
1205 DMDEBUG("%s: Additional per-sector space %u bytes for IV.", dm_device_name(md),
H A Ddm-era-target.c36 struct writeset_metadata md; member in struct:writeset
96 ws->md.nr_bits = nr_blocks;
97 r = setup_on_disk_bitset(info, ws->md.nr_bits, &ws->md.root);
142 r = dm_bitset_set_bit(info, ws->md.root, block, &ws->md.root);
311 static int superblock_read_lock(struct era_metadata *md, argument
314 return dm_bm_read_lock(md->bm, SUPERBLOCK_LOCATION,
318 static int superblock_lock_zero(struct era_metadata *md, argument
321 return dm_bm_write_lock_zero(md
325 superblock_lock(struct era_metadata *md, struct dm_block **sblock) argument
378 struct era_metadata *md = context; local
392 struct era_metadata *md = context; local
411 setup_writeset_tree_info(struct era_metadata *md) argument
424 setup_era_array_info(struct era_metadata *md) argument
437 setup_infos(struct era_metadata *md) argument
446 create_fresh_metadata(struct era_metadata *md) argument
480 save_sm_root(struct era_metadata *md) argument
493 copy_sm_root(struct era_metadata *md, struct superblock_disk *disk) argument
505 prepare_superblock(struct era_metadata *md, struct superblock_disk *disk) argument
527 write_superblock(struct era_metadata *md) argument
552 format_metadata(struct era_metadata *md) argument
570 open_metadata(struct era_metadata *md) argument
621 open_or_format_metadata(struct era_metadata *md, bool may_format) argument
637 create_persistent_data_objects(struct era_metadata *md, bool may_format) argument
656 destroy_persistent_data_objects(struct era_metadata *md) argument
666 swap_writeset(struct era_metadata *md, struct writeset *new_writeset) argument
694 metadata_digest_remove_writeset(struct era_metadata *md, struct digest *d) argument
713 metadata_digest_transcribe_writeset(struct era_metadata *md, struct digest *d) argument
747 metadata_digest_lookup_writeset(struct era_metadata *md, struct digest *d) argument
789 metadata_digest_start(struct era_metadata *md, struct digest *d) argument
811 struct era_metadata *md = kzalloc(sizeof(*md), GFP_KERNEL); local
832 metadata_close(struct era_metadata *md) argument
849 metadata_resize(struct era_metadata *md, void *arg) argument
893 metadata_era_archive(struct era_metadata *md) argument
924 next_writeset(struct era_metadata *md) argument
930 metadata_new_era(struct era_metadata *md) argument
947 metadata_era_rollover(struct era_metadata *md) argument
970 metadata_current_marked(struct era_metadata *md, dm_block_t block) argument
983 metadata_commit(struct era_metadata *md) argument
1020 metadata_checkpoint(struct era_metadata *md) argument
1032 metadata_take_snap(struct era_metadata *md) argument
1091 metadata_drop_snap(struct era_metadata *md) argument
1144 metadata_get_stats(struct era_metadata *md, void *ptr) argument
1181 struct era_metadata *md; member in struct:era
1393 in_worker0(struct era *era, int (*fn)(struct era_metadata *md)) argument
1403 in_worker1(struct era *era, int (*fn)(struct era_metadata *md, void *ref), void *arg) argument
1469 struct era_metadata *md; local
[all...]
H A Ddm-ima.c67 static int dm_ima_alloc_and_copy_name_uuid(struct mapped_device *md, char **dev_name, argument
83 r = dm_copy_name_and_uuid(md, *dev_name, *dev_uuid);
102 static int dm_ima_alloc_and_copy_device_data(struct mapped_device *md, char **device_data, argument
108 r = dm_ima_alloc_and_copy_name_uuid(md, &dev_name, &dev_uuid, noio);
120 dev_name, dev_uuid, md->disk->major, md->disk->first_minor,
121 md->disk->minors, num_targets);
149 static int dm_ima_alloc_and_copy_capacity_str(struct mapped_device *md, char **capacity_str, argument
154 capacity = get_capacity(md->disk);
169 void dm_ima_reset_data(struct mapped_device *md) argument
369 dm_ima_measure_on_device_resume(struct mapped_device *md, bool swap) argument
474 dm_ima_measure_on_device_remove(struct mapped_device *md, bool remove_all) argument
605 dm_ima_measure_on_table_clear(struct mapped_device *md, bool new_map) argument
704 dm_ima_measure_on_device_rename(struct mapped_device *md) argument
[all...]
H A Ddm-ima.h59 void dm_ima_reset_data(struct mapped_device *md);
61 void dm_ima_measure_on_device_resume(struct mapped_device *md, bool swap);
62 void dm_ima_measure_on_device_remove(struct mapped_device *md, bool remove_all);
63 void dm_ima_measure_on_table_clear(struct mapped_device *md, bool new_map);
64 void dm_ima_measure_on_device_rename(struct mapped_device *md);
68 static inline void dm_ima_reset_data(struct mapped_device *md) {} argument
70 static inline void dm_ima_measure_on_device_resume(struct mapped_device *md, bool swap) {} argument
71 static inline void dm_ima_measure_on_device_remove(struct mapped_device *md, bool remove_all) {} argument
72 static inline void dm_ima_measure_on_table_clear(struct mapped_device *md, bool new_map) {} argument
73 static inline void dm_ima_measure_on_device_rename(struct mapped_device *md) {} argument
[all...]
H A Ddm-ioctl.c52 struct mapped_device *md; member in struct:hash_cell
99 dm_get(hc->md);
118 dm_get(hc->md);
195 struct mapped_device *md; local
198 md = dm_get_md(huge_decode_dev(dev));
199 if (!md)
202 hc = dm_get_mdptr(md);
204 dm_put(md);
217 struct mapped_device *md)
244 hc->md
216 alloc_cell(const char *name, const char *uuid, struct mapped_device *md) argument
262 dm_hash_insert(const char *name, const char *uuid, struct mapped_device *md) argument
341 struct mapped_device *md; local
432 struct mapped_device *md; local
789 dm_get_inactive_table(struct mapped_device *md, int *srcu_idx) argument
812 dm_get_live_or_inactive_table(struct mapped_device *md, struct dm_ioctl *param, int *srcu_idx) argument
824 __dev_status(struct mapped_device *md, struct dm_ioctl *param) argument
882 struct mapped_device *md; local
966 struct mapped_device *md = NULL; local
980 struct mapped_device *md; local
1048 struct mapped_device *md; local
1077 struct mapped_device *md; local
1124 struct mapped_device *md; local
1154 struct mapped_device *md; local
1247 struct mapped_device *md; local
1341 struct mapped_device *md; local
1501 struct mapped_device *md; local
1586 struct mapped_device *md; local
1668 struct mapped_device *md; local
1694 struct mapped_device *md; local
1720 message_for_md(struct mapped_device *md, unsigned int argc, char **argv, char *result, unsigned int maxlen) argument
1751 struct mapped_device *md; local
2204 dm_copy_name_and_uuid(struct mapped_device *md, char *name, char *uuid) argument
2254 struct mapped_device *md; local
[all...]
H A Ddm-raid.c12 #include "md.h"
16 #include "md-bitmap.h"
21 #define MAX_RAID_DEVICES 253 /* md-raid kernel limit */
245 struct mddev md; member in struct:raid_set
263 struct mddev *mddev = &rs->md;
272 struct mddev *mddev = &rs->md;
403 return !rs->md.level;
409 return rs->md.level == 1;
415 return rs->md.level == 10;
421 return rs->md
[all...]
H A Ddm-rq.c19 struct mapped_device *md; member in struct:dm_rq_target_io
59 int dm_request_based(struct mapped_device *md) argument
61 return queue_is_mq(md->queue);
127 static void rq_end_stats(struct mapped_device *md, struct request *orig) argument
129 if (unlikely(dm_stats_used(&md->stats))) {
133 dm_stats_account_io(&md->stats, rq_data_dir(orig),
140 * Don't touch any member of the md after calling this function because
141 * the md may be freed in dm_put() at the end of this function.
144 static void rq_completed(struct mapped_device *md) argument
149 dm_put(md);
160 struct mapped_device *md = tio->md; local
176 dm_mq_kick_requeue_list(struct mapped_device *md) argument
190 struct mapped_device *md = tio->md; local
258 struct mapped_device *md = tio->md; local
338 init_tio(struct dm_rq_target_io *tio, struct request *rq, struct mapped_device *md) argument
366 struct mapped_device *md = tio->md; local
422 dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf) argument
427 dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md, const char *buf, size_t count) argument
433 dm_start_request(struct mapped_device *md, struct request *orig) argument
460 struct mapped_device *md = set->driver_data; local
482 struct mapped_device *md = tio->md; local
536 dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t) argument
578 dm_mq_cleanup_mapped_device(struct mapped_device *md) argument
[all...]
H A Ddm-rq.h34 int dm_mq_init_request_queue(struct mapped_device *md, struct dm_table *t);
35 void dm_mq_cleanup_mapped_device(struct mapped_device *md);
40 void dm_mq_kick_requeue_list(struct mapped_device *md);
44 ssize_t dm_attr_rq_based_seq_io_merge_deadline_show(struct mapped_device *md, char *buf);
45 ssize_t dm_attr_rq_based_seq_io_merge_deadline_store(struct mapped_device *md,
H A Ddm-stats.c267 struct mapped_device *md)
396 suspend_callback(md);
424 resume_callback(md);
430 resume_callback(md);
1001 static int message_stats_create(struct mapped_device *md, argument
1033 len = dm_get_size(md);
1105 id = dm_stats_create(dm_get_stats(md), start, end, step, stat_flags,
1107 dm_internal_suspend_fast, dm_internal_resume_fast, md);
1125 static int message_stats_delete(struct mapped_device *md, argument
1137 return dm_stats_delete(dm_get_stats(md), i
260 dm_stats_create(struct dm_stats *stats, sector_t start, sector_t end, sector_t step, unsigned int stat_flags, unsigned int n_histogram_entries, unsigned long long *histogram_boundaries, const char *program_id, const char *aux_data, void (*suspend_callback)(struct mapped_device *), void (*resume_callback)(struct mapped_device *), struct mapped_device *md) argument
1140 message_stats_clear(struct mapped_device *md, unsigned int argc, char **argv) argument
1155 message_stats_list(struct mapped_device *md, unsigned int argc, char **argv, char *result, unsigned int maxlen) argument
1178 message_stats_print(struct mapped_device *md, unsigned int argc, char **argv, bool clear, char *result, unsigned int maxlen) argument
1205 message_stats_set_aux(struct mapped_device *md, unsigned int argc, char **argv) argument
1220 dm_stats_message(struct mapped_device *md, unsigned int argc, char **argv, char *result, unsigned int maxlen) argument
[all...]
H A Ddm-stats.h29 int dm_stats_message(struct mapped_device *md, unsigned int argc, char **argv,
H A Ddm-sysfs.c15 ssize_t (*show)(struct mapped_device *md, char *p);
16 ssize_t (*store)(struct mapped_device *md, const char *p, size_t count);
27 struct mapped_device *md; local
34 md = dm_get_from_kobject(kobj);
35 if (!md)
38 ret = dm_attr->show(md, page);
39 dm_put(md);
52 struct mapped_device *md; local
59 md = dm_get_from_kobject(kobj);
60 if (!md)
69 dm_attr_name_show(struct mapped_device *md, char *buf) argument
78 dm_attr_uuid_show(struct mapped_device *md, char *buf) argument
87 dm_attr_suspended_show(struct mapped_device *md, char *buf) argument
94 dm_attr_use_blk_mq_show(struct mapped_device *md, char *buf) argument
133 dm_sysfs_init(struct mapped_device *md) argument
143 dm_sysfs_exit(struct mapped_device *md) argument
[all...]
H A Ddm-table.c130 unsigned int num_targets, struct mapped_device *md)
162 t->md = md;
167 static void free_devices(struct list_head *devices, struct mapped_device *md) argument
175 dm_device_name(md), dd->dm_dev->name);
176 dm_put_table_device(md, dd->dm_dev);
205 free_devices(&t->devices, t->md);
245 dm_device_name(ti->table->md), bdev,
261 dm_device_name(ti->table->md),
278 dm_device_name(ti->table->md),
129 dm_table_create(struct dm_table **result, blk_mode_t mode, unsigned int num_targets, struct mapped_device *md) argument
313 upgrade_mode(struct dm_dev_internal *dd, blk_mode_t new_mode, struct mapped_device *md) argument
1019 dm_table_alloc_md_mempools(struct dm_table *t, struct mapped_device *md) argument
1177 struct mapped_device *md = t->md; local
1219 struct mapped_device *md; member in struct:dm_crypto_profile
1238 struct mapped_device *md = local
[all...]
H A Ddm-thin.c552 static struct pool *__pool_table_lookup(struct mapped_device *md) argument
559 if (tmp->pool_md == md) {
H A Ddm-uevent.c31 struct mapped_device *md; member in struct:dm_uevent
44 static struct dm_uevent *dm_uevent_alloc(struct mapped_device *md) argument
53 event->md = md;
58 static struct dm_uevent *dm_build_path_uevent(struct mapped_device *md, argument
67 event = dm_uevent_alloc(md);
88 dm_next_uevent_seq(md))) {
133 if (dm_copy_name_and_uuid(event->md, event->name,
173 struct mapped_device *md = dm_table_get_md(ti->table); local
181 event = dm_build_path_uevent(md, t
[all...]
H A Ddm-verity-loadpin.c55 struct mapped_device *md; local
67 md = dm_get_md(bdev->bd_dev);
68 if (!md)
71 table = dm_get_live_table(md, &srcu_idx);
82 dm_put_live_table(md, srcu_idx);
83 dm_put(md);
H A Ddm-verity-target.c230 struct mapped_device *md = dm_table_get_md(v->ti->table); local
262 kobject_uevent_env(&disk_to_dev(dm_disk(md))->kobj, KOBJ_CHANGE, envp);
H A Ddm-zone.c21 static int dm_blk_do_report_zones(struct mapped_device *md, struct dm_table *t, argument
25 struct gendisk *disk = md->disk;
59 struct mapped_device *md = disk->private_data; local
63 if (!md->zone_revalidate_map) {
65 if (dm_suspended_md(md))
68 map = dm_get_live_table(md, &srcu_idx);
73 map = md->zone_revalidate_map;
76 ret = dm_blk_do_report_zones(md, map, sector, nr_zones, cb, data);
78 if (!md->zone_revalidate_map)
79 dm_put_live_table(md, srcu_id
132 dm_is_zone_write(struct mapped_device *md, struct bio *bio) argument
163 dm_check_zoned(struct mapped_device *md, struct dm_table *t) argument
200 dm_revalidate_zones(struct mapped_device *md, struct dm_table *t) argument
256 struct mapped_device *md = t->md; local
298 struct mapped_device *md = io->md; local
[all...]
H A Ddm.c308 int dm_deleting_md(struct mapped_device *md) argument
310 return test_bit(DMF_DELETING, &md->flags);
315 struct mapped_device *md; local
319 md = disk->private_data;
320 if (!md)
323 if (test_bit(DMF_FREEING, &md->flags) ||
324 dm_deleting_md(md)) {
325 md = NULL;
329 dm_get(md);
330 atomic_inc(&md
339 struct mapped_device *md; local
356 dm_open_count(struct mapped_device *md) argument
364 dm_lock_for_deletion(struct mapped_device *md, bool mark_deferred, bool only_deferred) argument
384 dm_cancel_deferred_remove(struct mapped_device *md) argument
407 struct mapped_device *md = bdev->bd_disk->private_data; local
412 dm_prepare_ioctl(struct mapped_device *md, int *srcu_idx, struct block_device **bdev) argument
446 dm_unprepare_ioctl(struct mapped_device *md, int srcu_idx) argument
454 struct mapped_device *md = bdev->bd_disk->private_data; local
573 alloc_io(struct mapped_device *md, struct bio *bio, gfp_t gfp_mask) argument
617 struct mapped_device *md = ci->io->md; local
670 queue_io(struct mapped_device *md, struct bio *bio) argument
699 dm_sync_table(struct mapped_device *md) argument
725 open_table_device(struct mapped_device *md, dev_t dev, blk_mode_t mode) argument
777 close_table_device(struct table_device *td, struct mapped_device *md) argument
805 dm_get_table_device(struct mapped_device *md, dev_t dev, blk_mode_t mode, struct dm_dev **result) argument
827 dm_put_table_device(struct mapped_device *md, struct dm_dev *d) argument
840 dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo) argument
850 dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo) argument
864 __noflush_suspending(struct mapped_device *md) argument
871 struct mapped_device *md = io->md; local
883 dm_kick_requeue(struct mapped_device *md, bool first_stage) argument
901 struct mapped_device *md = io->md; local
945 struct mapped_device *md = io->md; local
993 struct mapped_device *md = container_of(work, struct mapped_device, local
1079 dm_get_queue_limits(struct mapped_device *md) argument
1084 disable_discard(struct mapped_device *md) argument
1092 disable_write_zeroes(struct mapped_device *md) argument
1112 struct mapped_device *md = io->md; local
1236 struct mapped_device *md = dax_get_private(dax_dev); local
1263 struct mapped_device *md = dax_get_private(dax_dev); local
1290 struct mapped_device *md = dax_get_private(dax_dev); local
1391 __set_swap_bios_limit(struct mapped_device *md, int latch) argument
1412 struct mapped_device *md = io->md; local
1765 dm_zone_bio_needs_split(struct mapped_device *md, struct bio *bio) argument
1775 dm_zone_plug_bio(struct mapped_device *md, struct bio *bio) argument
1780 dm_zone_bio_needs_split(struct mapped_device *md, struct bio *bio) argument
1785 dm_zone_plug_bio(struct mapped_device *md, struct bio *bio) argument
1794 dm_split_and_process_bio(struct mapped_device *md, struct dm_table *map, struct bio *bio) argument
1878 struct mapped_device *md = bio->bi_bdev->bd_disk->private_data; local
2033 cleanup_mapped_device(struct mapped_device *md) argument
2093 struct mapped_device *md; local
2209 free_dev(struct mapped_device *md) argument
2232 struct mapped_device *md = context; local
2248 __bind(struct mapped_device *md, struct dm_table *t, struct queue_limits *limits) argument
2318 __unbind(struct mapped_device *md) argument
2337 struct mapped_device *md; local
2353 dm_lock_md_type(struct mapped_device *md) argument
2358 dm_unlock_md_type(struct mapped_device *md) argument
2363 dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type) argument
2369 dm_get_md_type(struct mapped_device *md) argument
2374 dm_get_immutable_target_type(struct mapped_device *md) argument
2382 dm_setup_md_queue(struct mapped_device *md, struct dm_table *t) argument
2454 struct mapped_device *md; local
2476 dm_get_mdptr(struct mapped_device *md) argument
2481 dm_set_mdptr(struct mapped_device *md, void *ptr) argument
2486 dm_get(struct mapped_device *md) argument
2492 dm_hold(struct mapped_device *md) argument
2505 dm_device_name(struct mapped_device *md) argument
2511 __dm_destroy(struct mapped_device *md, bool wait) argument
2558 dm_destroy(struct mapped_device *md) argument
2563 dm_destroy_immediate(struct mapped_device *md) argument
2568 dm_put(struct mapped_device *md) argument
2574 dm_in_flight_bios(struct mapped_device *md) argument
2585 dm_wait_for_bios_completion(struct mapped_device *md, unsigned int task_state) argument
2610 dm_wait_for_completion(struct mapped_device *md, unsigned int task_state) argument
2637 struct mapped_device *md = container_of(work, struct mapped_device, work); local
2653 dm_queue_flush(struct mapped_device *md) argument
2663 dm_swap_table(struct mapped_device *md, struct dm_table *table) argument
2708 lock_fs(struct mapped_device *md) argument
2720 unlock_fs(struct mapped_device *md) argument
2737 __dm_suspend(struct mapped_device *md, struct dm_table *map, unsigned int suspend_flags, unsigned int task_state, int dmf_suspended_flag) argument
2845 dm_suspend(struct mapped_device *md, unsigned int suspend_flags) argument
2886 __dm_resume(struct mapped_device *md, struct dm_table *map) argument
2910 dm_resume(struct mapped_device *md) argument
2952 __dm_internal_suspend(struct mapped_device *md, unsigned int suspend_flags) argument
2982 __dm_internal_resume(struct mapped_device *md) argument
3018 dm_internal_suspend_noflush(struct mapped_device *md) argument
3026 dm_internal_resume(struct mapped_device *md) argument
3039 dm_internal_suspend_fast(struct mapped_device *md) argument
3052 dm_internal_resume_fast(struct mapped_device *md) argument
3069 dm_kobject_uevent(struct mapped_device *md, enum kobject_action action, unsigned int cookie, bool need_resize_uevent) argument
3095 dm_next_uevent_seq(struct mapped_device *md) argument
3100 dm_get_event_nr(struct mapped_device *md) argument
3105 dm_wait_event(struct mapped_device *md, int event_nr) argument
3111 dm_uevent_add(struct mapped_device *md, struct list_head *elist) argument
3124 dm_disk(struct mapped_device *md) argument
3130 dm_kobject(struct mapped_device *md) argument
3137 struct mapped_device *md; local
3153 dm_suspended_md(struct mapped_device *md) argument
3158 dm_post_suspending_md(struct mapped_device *md) argument
3163 dm_suspended_internally_md(struct mapped_device *md) argument
3168 dm_test_deferred_remove_flag(struct mapped_device *md) argument
3217 struct mapped_device *md = bdev->bd_disk->private_data; local
3426 struct mapped_device *md = bdev->bd_disk->private_data; local
[all...]
H A Ddm.h77 void dm_lock_md_type(struct mapped_device *md);
78 void dm_unlock_md_type(struct mapped_device *md);
79 void dm_set_md_type(struct mapped_device *md, enum dm_queue_mode type);
80 enum dm_queue_mode dm_get_md_type(struct mapped_device *md);
81 struct target_type *dm_get_immutable_target_type(struct mapped_device *md);
83 int dm_setup_md_queue(struct mapped_device *md, struct dm_table *t);
109 bool dm_is_zone_write(struct mapped_device *md, struct bio *bio);
113 static inline bool dm_is_zone_write(struct mapped_device *md, struct bio *bio) argument
140 int dm_deleting_md(struct mapped_device *md);
145 int dm_suspended_md(struct mapped_device *md);
[all...]
/linux-master/drivers/media/platform/samsung/s3c-camif/
H A Dcamif-core.c302 struct media_device *md = &camif->media_dev; local
307 memset(md, 0, sizeof(*md));
308 snprintf(md->model, sizeof(md->model), "Samsung S3C%s CAMIF",
310 strscpy(md->bus_info, "platform", sizeof(md->bus_info));
311 md->hw_revision = ip_rev;
313 md->dev = camif->dev;
316 v4l2_dev->mdev = md;
[all...]
/linux-master/drivers/media/tuners/
H A Dmt2063.c663 * ma mb mc md
693 u32 ma, mb, mc, md, me, mf; local
717 md = (n * ((f_LO1 + hgds) / gd_Scale) -
721 if (md >= pAS_Info->maxH1)
728 if (md == ma)
733 if (mc != md) {

Completed in 825 milliseconds

12345678910