Searched refs:node (Results 1 - 25 of 3628) sorted by relevance

1234567891011>>

/linux-master/fs/ocfs2/cluster/
H A Dquorum.h12 void o2quo_hb_up(u8 node);
13 void o2quo_hb_down(u8 node);
14 void o2quo_hb_still_up(u8 node);
15 void o2quo_conn_up(u8 node);
16 void o2quo_conn_err(u8 node);
/linux-master/scripts/gdb/linux/
H A Drbtree.py15 node = root.address.cast(rb_root_type.get_type().pointer())
19 node = root['rb_node']
20 if node == 0:
23 while node['rb_left']:
24 node = node['rb_left']
26 return node
31 node = root.address.cast(rb_root_type.get_type().pointer())
35 node = root['rb_node']
36 if node
[all...]
H A Dradixtree.py20 def is_internal_node(node):
22 return ((node.cast(long_type) & constants.LX_RADIX_TREE_ENTRY_MASK) == constants.LX_RADIX_TREE_INTERNAL_NODE)
24 def entry_to_node(node):
26 node_type = node.type
27 indirect_ptr = node.cast(long_type) & ~constants.LX_RADIX_TREE_INTERNAL_NODE
30 def node_maxindex(node):
31 return (constants.LX_RADIX_TREE_MAP_SIZE << node['shift']) - 1
35 node = root.dereference()
40 node = root['xa_head']
41 if node
[all...]
/linux-master/include/linux/
H A Dtimerqueue.h9 struct timerqueue_node *node);
11 struct timerqueue_node *node);
13 struct timerqueue_node *node);
20 * Returns a pointer to the timer node that has the earliest expiration time.
27 return rb_entry_safe(leftmost, struct timerqueue_node, node);
30 static inline void timerqueue_init(struct timerqueue_node *node) argument
32 RB_CLEAR_NODE(&node->node);
35 static inline bool timerqueue_node_queued(struct timerqueue_node *node) argument
37 return !RB_EMPTY_NODE(&node
[all...]
H A Drbtree.h33 #define RB_EMPTY_NODE(node) \
34 ((node)->__rb_parent_color == (unsigned long)(node))
35 #define RB_CLEAR_NODE(node) \
36 ((node)->__rb_parent_color = (unsigned long)(node))
53 /* Fast replacement of a single node without remove/rebalance/add/rebalance */
59 static inline void rb_link_node(struct rb_node *node, struct rb_node *parent, argument
62 node->__rb_parent_color = (unsigned long)parent;
63 node
68 rb_link_node_rcu(struct rb_node *node, struct rb_node *parent, struct rb_node **rb_link) argument
108 rb_insert_color_cached(struct rb_node *node, struct rb_root_cached *root, bool leftmost) argument
119 rb_erase_cached(struct rb_node *node, struct rb_root_cached *root) argument
165 rb_add_cached(struct rb_node *node, struct rb_root_cached *tree, bool (*less)(struct rb_node *, const struct rb_node *)) argument
195 rb_add(struct rb_node *node, struct rb_root *tree, bool (*less)(struct rb_node *, const struct rb_node *)) argument
223 rb_find_add(struct rb_node *node, struct rb_root *tree, int (*cmp)(struct rb_node *, const struct rb_node *)) argument
259 struct rb_node *node = tree->rb_node; local
287 struct rb_node *node = tree->rb_node; local
314 rb_next_match(const void *key, struct rb_node *node, int (*cmp)(const void *key, const struct rb_node *)) argument
[all...]
H A Dof_pdt.h18 int (*nextprop)(phandle node, char *prev, char *buf);
21 int (*getproplen)(phandle node, const char *prop);
22 int (*getproperty)(phandle node, const char *prop, char *buf,
27 phandle (*getsibling)(phandle node);
30 int (*pkg2path)(phandle node, char *buf, const int buflen, int *len);
/linux-master/arch/powerpc/kernel/
H A Dsecure_boot.c24 struct device_node *node; local
28 node = get_ppc_fw_sb_node();
29 enabled = of_property_read_bool(node, "os-secureboot-enforcing");
30 of_node_put(node);
35 node = of_find_node_by_path("/");
36 if (!of_property_read_u32(node, "ibm,secure-boot", &secureboot))
38 of_node_put(node);
48 struct device_node *node; local
52 node = get_ppc_fw_sb_node();
53 enabled = of_property_read_bool(node, "truste
[all...]
/linux-master/lib/
H A Dbootconfig.c42 * xbc_parse() parses the text to build a simple tree. Each tree node is
43 * simply a key word or a value. A key node may have a next key node or/and
44 * a child node (both key and value). A value node may have a next value
45 * node (for array).
114 * xbc_root_node() - Get the root node of extended boot config
116 * Return the address of root node of extended boot config. If the
128 * xbc_node_index() - Get the index of XBC node
129 * @node
133 xbc_node_index(struct xbc_node *node) argument
145 xbc_node_get_parent(struct xbc_node *node) argument
157 xbc_node_get_child(struct xbc_node *node) argument
171 xbc_node_get_next(struct xbc_node *node) argument
183 xbc_node_get_data(struct xbc_node *node) argument
194 xbc_node_match_prefix(struct xbc_node *node, const char **prefix) argument
224 struct xbc_node *node; local
262 struct xbc_node *node = xbc_node_find_subkey(parent, key); local
293 xbc_node_compose_key_after(struct xbc_node *root, struct xbc_node *node, char *buf, size_t size) argument
342 xbc_node_find_next_leaf(struct xbc_node *root, struct xbc_node *node) argument
412 xbc_init_node(struct xbc_node *node, char *data, uint32_t flag) argument
428 struct xbc_node *node; local
440 xbc_last_sibling(struct xbc_node *node) argument
448 xbc_last_child(struct xbc_node *node) argument
458 struct xbc_node *sib, *node = xbc_add_node(data, flag); local
495 struct xbc_node *node = xbc_add_sibling(data, flag); local
614 struct xbc_node *node; local
637 find_match_node(struct xbc_node *node, char *k) argument
649 struct xbc_node *node, *child; local
[all...]
H A Dtimerqueue.c18 rb_entry((_n), struct timerqueue_node, node)
29 * @node: timer node to be added
31 * Adds the timer node to the timerqueue, sorted by the node's expires
35 bool timerqueue_add(struct timerqueue_head *head, struct timerqueue_node *node) argument
38 WARN_ON_ONCE(!RB_EMPTY_NODE(&node->node));
40 return rb_add_cached(&node->node,
53 timerqueue_del(struct timerqueue_head *head, struct timerqueue_node *node) argument
73 timerqueue_iterate_next(struct timerqueue_node *node) argument
[all...]
/linux-master/drivers/net/wireless/quantenna/qtnfmac/
H A Dutil.c19 struct qtnf_sta_node *node; local
24 list_for_each_entry(node, &list->head, list) {
25 if (ether_addr_equal(node->mac_addr, mac))
26 return node;
35 struct qtnf_sta_node *node; local
40 list_for_each_entry(node, &list->head, list) {
42 return node;
52 struct qtnf_sta_node *node; local
57 node = qtnf_sta_list_lookup(list, mac);
59 if (node)
78 struct qtnf_sta_node *node; local
96 struct qtnf_sta_node *node, *tmp; local
[all...]
/linux-master/include/asm-generic/
H A Dtopology.h38 #define set_numa_node(node)
41 #define set_cpu_numa_node(cpu, node)
49 #define cpumask_of_node(node) ((node) == 0 ? cpu_online_mask : cpu_none_mask)
51 #define cpumask_of_node(node) ((void)(node), cpu_online_mask)
69 #define set_numa_mem(node)
72 #define set_cpu_numa_mem(cpu, node)
/linux-master/drivers/firmware/efi/
H A Ddev-path-parser.c15 static long __init parse_acpi_path(const struct efi_dev_path *node, argument
22 if (node->header.length != 12)
26 'A' + ((node->acpi.hid >> 10) & 0x1f) - 1,
27 'A' + ((node->acpi.hid >> 5) & 0x1f) - 1,
28 'A' + ((node->acpi.hid >> 0) & 0x1f) - 1,
29 node->acpi.hid >> 16);
32 if (acpi_dev_uid_match(adev, node->acpi.uid))
34 if (!acpi_device_uid(adev) && node->acpi.uid == 0)
57 static long __init parse_pci_path(const struct efi_dev_path *node, argument
62 if (node
93 parse_end_path(const struct efi_dev_path *node, struct device *parent, struct device **child) argument
144 efi_get_device_by_path(const struct efi_dev_path **node, size_t *len) argument
[all...]
/linux-master/drivers/scsi/elx/libefc/
H A Defc_device.c16 efc_d_send_prli_rsp(struct efc_node *node, u16 ox_id) argument
19 struct efc *efc = node->efc;
21 node->ls_acc_oxid = ox_id;
22 node->send_ls_acc = EFC_NODE_SEND_LS_ACC_PRLI;
29 if (node->init) {
31 node->display_name, node->wwpn, node->wwnn);
32 if (node->nport->enable_tgt)
33 rc = efc->tt.scsi_new_node(efc, node);
47 struct efc_node *node = NULL; local
85 struct efc_node *node = ctx->app; local
148 struct efc_node *node = ctx->app; local
201 struct efc_node *node = ctx->app; local
317 struct efc_node *node = ctx->app; local
343 efc_send_ls_acc_after_attach(struct efc_node *node, struct fc_frame_header *hdr, enum efc_node_send_ls_acc ls) argument
358 efc_process_prli_payload(struct efc_node *node, void *prli) argument
374 struct efc_node *node = ctx->app; local
411 struct efc_node *node = ctx->app; local
450 efc_node_init_device(struct efc_node *node, bool send_plogi) argument
463 efc_d_check_plogi_topology(struct efc_node *node, u32 d_id) argument
507 struct efc_node *node = ctx->app; local
692 struct efc_node *node = ctx->app; local
814 struct efc_node *node = ctx->app; local
879 struct efc_node *node = ctx->app; local
915 struct efc_node *node = ctx->app; local
981 struct efc_node *node = ctx->app; local
1061 struct efc_node *node = ctx->app; local
1113 struct efc_node *node = ctx->app; local
1262 struct efc_node *node = ctx->app; local
1295 struct efc_node *node = ctx->app; local
1427 struct efc_node *node = ctx->app; local
1550 struct efc_node *node = ctx->app; local
[all...]
H A Defc_fabric.c8 * This file implements remote node state machines for:
24 efc_fabric_initiate_shutdown(struct efc_node *node) argument
26 struct efc *efc = node->efc;
28 node->els_io_enabled = false;
30 if (node->attached) {
33 /* issue hw node free; don't care if succeeds right away
34 * or sometime later, will check node->attached later in
37 rc = efc_cmd_node_detach(efc, &node->rnode);
39 node_printf(node, "Failed freeing HW node, r
54 struct efc_node *node = NULL; local
76 struct efc_node *node = ctx->app; local
100 efc_fabric_set_topology(struct efc_node *node, enum efc_nport_topology topology) argument
107 efc_fabric_notify_topology(struct efc_node *node) argument
135 struct efc_node *node = ctx->app; local
240 struct efc_node *node = ctx->app; local
263 struct efc_node *node = ctx->app; local
356 struct efc_node *node = ctx->app; local
397 struct efc_node *node = ctx->app; local
414 struct efc_node *node = ctx->app; local
436 struct efc_node *node = ctx->app; local
471 struct efc_node *node = ctx->app; local
525 struct efc_node *node = ctx->app; local
569 struct efc_node *node = ctx->app; local
604 struct efc_node *node = ctx->app; local
647 efc_process_gidpt_payload(struct efc_node *node, void *data, u32 gidpt_len) argument
791 struct efc_node *node = ctx->app; local
840 struct efc_node *node = ctx->app; local
889 struct efc_node *node = from_timer(node, t, gidpt_delay_timer); local
900 struct efc_node *node = ctx->app; local
951 struct efc_node *node = ctx->app; local
975 struct efc_node *node = ctx->app; local
1002 efc_process_rscn(struct efc_node *node, struct efc_node_cb *cbdata) argument
1021 struct efc_node *node = ctx->app; local
1057 struct efc_node *node = ctx->app; local
1121 struct efc_node *node = ctx->app; local
1211 struct efc_node *node = ctx->app; local
1240 struct efc_node *node = ctx->app; local
1316 struct efc_node *node = ctx->app; local
1393 struct efc_node *node = ctx->app; local
1461 struct efc_node *node = ctx->app; local
[all...]
H A Defc_els.h17 struct efc_node *node; member in struct:efc_els_io_req
33 efc_els_io_alloc(struct efc_node *node, u32 reqlen);
35 efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen);
39 typedef void (*els_cb_t)(struct efc_node *node,
42 efc_send_plogi(struct efc_node *node);
44 efc_send_flogi(struct efc_node *node);
46 efc_send_fdisc(struct efc_node *node);
48 efc_send_prli(struct efc_node *node);
50 efc_send_prlo(struct efc_node *node);
52 efc_send_logo(struct efc_node *node);
[all...]
H A Defc_node.c14 struct efc_node *node = rnode->node; local
18 efc_node_post_event(node, event, NULL);
27 /* Find an FC node structure given the FC port ID */
34 struct efc_node *node = container_of(arg, struct efc_node, ref); local
35 struct efc *efc = node->efc;
38 dma = &node->sparm_dma_buf;
41 mempool_free(node, efc->node_pool);
48 struct efc_node *node = NULL; local
53 efc_log_debug(efc, "node allocatio
120 efc_node_free(struct efc_node *node) argument
192 efc_node_attach(struct efc_node *node) argument
246 efc_node_update_display_name(struct efc_node *node) argument
259 efc_node_send_ls_io_cleanup(struct efc_node *node) argument
270 efc_node_handle_implicit_logo(struct efc_node *node) argument
292 efc_node_handle_explicit_logo(struct efc_node *node) argument
346 efc_node_purge_pending(struct efc_node *node) argument
366 struct efc_node *node = ctx->app; local
425 efc_node_check_els_quiesced(struct efc_node *node) argument
451 efc_node_initiate_cleanup(struct efc_node *node) argument
468 struct efc_node *node = ctx->app; local
542 struct efc_node *node = ctx->app; local
591 struct efc_node *node = ctx->app; local
648 struct efc_node *node = NULL; local
763 efc_node_save_sparms(struct efc_node *node, void *payload) argument
769 efc_node_post_event(struct efc_node *node, enum efc_sm_event evt, void *arg) argument
801 efc_node_transition(struct efc_node *node, void (*state)(struct efc_sm_ctx *, enum efc_sm_event, void *), void *data) argument
825 efc_node_get_wwpn(struct efc_node *node) argument
834 efc_node_get_wwnn(struct efc_node *node) argument
861 efc_els_io_list_empty(struct efc_node *node, struct list_head *list) argument
873 efc_node_pause(struct efc_node *node, void (*state)(struct efc_sm_ctx *, enum efc_sm_event, void *)) argument
886 struct efc_node *node = ctx->app; local
925 efc_node_recv_els_frame(struct efc_node *node, struct efc_hw_sequence *seq) argument
966 efc_node_recv_ct_frame(struct efc_node *node, struct efc_hw_sequence *seq) argument
981 efc_node_recv_fcp_cmd(struct efc_node *node, struct efc_hw_sequence *seq) argument
993 efc_process_node_pending(struct efc_node *node) argument
1037 efc_scsi_sess_reg_complete(struct efc_node *node, u32 status) argument
1053 efc_scsi_del_initiator_complete(struct efc *efc, struct efc_node *node) argument
1064 efc_scsi_del_target_complete(struct efc *efc, struct efc_node *node) argument
1075 efc_scsi_io_list_empty(struct efc *efc, struct efc_node *node) argument
1084 efc_node_post_els_resp(struct efc_node *node, u32 evt, void *arg) argument
1094 efc_node_post_shutdown(struct efc_node *node, void *arg) argument
[all...]
/linux-master/kernel/locking/
H A Dmcs_spinlock.h58 * In order to acquire the lock, the caller should declare a local node and
59 * pass a reference of the node to this function in addition to the lock.
61 * on this node->locked until the previous lock holder sets the node->locked
65 void mcs_spin_lock(struct mcs_spinlock **lock, struct mcs_spinlock *node) argument
69 /* Init node */
70 node->locked = 0;
71 node->next = NULL;
76 * observation of @node. And to provide the ACQUIRE ordering associated
79 prev = xchg(lock, node);
102 mcs_spin_unlock(struct mcs_spinlock **lock, struct mcs_spinlock *node) argument
[all...]
/linux-master/fs/dlm/
H A Dmidcomms.c29 * Due the fact that dlm has pre-configured node addresses on every side
35 * application layer. The version field of every node will be set on these RCOM
36 * messages as soon as they arrived and the node isn't yet part of the nodes
47 * compatibility. A node cannot send anything to another node when a DLM_FIN
51 * manager removed the node from internal lists, at this point DLM does not
52 * send any message to the other node. There exists two cases:
160 * We could send a fence signal for a specific node to the cluster
185 /* counts how many lockspaces are using this node
187 * node want
200 struct midcomms_node *node; member in struct:dlm_mhandle
254 dlm_midcomms_state(struct midcomms_node *node) argument
259 dlm_midcomms_flags(struct midcomms_node *node) argument
264 dlm_midcomms_send_queue_cnt(struct midcomms_node *node) argument
269 dlm_midcomms_version(struct midcomms_node *node) argument
276 struct midcomms_node *node; local
294 dlm_mhandle_delete(struct midcomms_node *node, struct dlm_mhandle *mh) argument
302 dlm_send_queue_flush(struct midcomms_node *node) argument
317 midcomms_node_reset(struct midcomms_node *node) argument
340 struct midcomms_node *node; local
400 dlm_send_ack_threshold(struct midcomms_node *node, uint32_t threshold) argument
422 dlm_send_fin(struct midcomms_node *node, void (*ack_rcv)(struct midcomms_node *node)) argument
450 dlm_receive_ack(struct midcomms_node *node, uint32_t seq) argument
478 dlm_pas_fin_ack_rcv(struct midcomms_node *node) argument
518 dlm_midcomms_receive_buffer(const union dlm_packet *p, struct midcomms_node *node, uint32_t seq) argument
660 struct midcomms_node *node; local
788 struct midcomms_node *node; local
920 struct midcomms_node *node; local
1005 struct midcomms_node *node; local
1154 struct midcomms_node *node = container_of(rcu, struct midcomms_node, rcu); local
1163 struct midcomms_node *node; local
1183 dlm_act_fin_ack_rcv(struct midcomms_node *node) argument
1216 struct midcomms_node *node; local
1261 struct midcomms_node *node; local
1323 struct midcomms_node *node; local
1342 midcomms_shutdown(struct midcomms_node *node) argument
1393 struct midcomms_node *node; local
1417 struct midcomms_node *node; local
1465 struct midcomms_node *node; member in struct:dlm_rawmsg_data
1490 dlm_midcomms_rawmsg_send(struct midcomms_node *node, void *buf, int buflen) argument
[all...]
/linux-master/fs/hfs/
H A Dbnode.c9 * Handle basic btree node operations
18 void hfs_bnode_read(struct hfs_bnode *node, void *buf, int off, int len) argument
25 off += node->page_offset;
30 if (pagenum >= node->tree->pages_per_bnode)
32 page = node->page[pagenum];
42 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) argument
46 hfs_bnode_read(node, &data, off, 2);
50 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) argument
54 hfs_bnode_read(node, &data, off, 1);
58 void hfs_bnode_read_key(struct hfs_bnode *node, voi argument
73 hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) argument
84 hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) argument
91 hfs_bnode_write_u8(struct hfs_bnode *node, int off, u8 data) argument
97 hfs_bnode_clear(struct hfs_bnode *node, int off, int len) argument
125 hfs_bnode_move(struct hfs_bnode *node, int dst, int src, int len) argument
142 hfs_bnode_dump(struct hfs_bnode *node) argument
179 hfs_bnode_unlink(struct hfs_bnode *node) argument
228 struct hfs_bnode *node; local
246 struct hfs_bnode *node, *node2; local
302 hfs_bnode_unhash(struct hfs_bnode *node) argument
319 struct hfs_bnode *node; local
401 hfs_bnode_free(struct hfs_bnode *node) argument
413 struct hfs_bnode *node; local
447 hfs_bnode_get(struct hfs_bnode *node) argument
458 hfs_bnode_put(struct hfs_bnode *node) argument
[all...]
/linux-master/drivers/clk/sunxi/
H A Dclk-a10-codec.c14 static void __init sun4i_codec_clk_setup(struct device_node *node) argument
17 const char *clk_name = node->name, *parent_name;
20 reg = of_io_request_and_map(node, 0, of_node_full_name(node));
24 of_property_read_string(node, "clock-output-names", &clk_name);
25 parent_name = of_clk_get_parent_name(node, 0);
32 of_clk_add_provider(node, of_clk_src_simple_get, clk);
/linux-master/arch/powerpc/boot/
H A Dcuboot-8xx.c22 void *node; local
28 node = finddevice("/soc/cpm");
29 if (node)
30 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);
32 node = finddevice("/soc/cpm/brg");
33 if (node)
34 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);
/linux-master/include/drm/
H A Ddrm_vma_manager.h72 struct drm_vma_offset_node *node, unsigned long pages);
74 struct drm_vma_offset_node *node);
76 int drm_vma_node_allow(struct drm_vma_offset_node *node, struct drm_file *tag);
77 int drm_vma_node_allow_once(struct drm_vma_offset_node *node, struct drm_file *tag);
78 void drm_vma_node_revoke(struct drm_vma_offset_node *node,
80 bool drm_vma_node_is_allowed(struct drm_vma_offset_node *node,
84 * drm_vma_offset_exact_lookup_locked() - Look up node by exact address
89 * Same as drm_vma_offset_lookup_locked() but does not allow any offset into the node.
100 struct drm_vma_offset_node *node; local
102 node
148 drm_vma_node_reset(struct drm_vma_offset_node *node) argument
169 drm_vma_node_start(const struct drm_vma_offset_node *node) argument
186 drm_vma_node_size(struct drm_vma_offset_node *node) argument
203 drm_vma_node_offset_addr(struct drm_vma_offset_node *node) argument
220 drm_vma_node_unmap(struct drm_vma_offset_node *node, struct address_space *file_mapping) argument
241 drm_vma_node_verify_access(struct drm_vma_offset_node *node, struct drm_file *tag) argument
[all...]
/linux-master/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_interrupt.c53 int kfd_interrupt_init(struct kfd_node *node) argument
57 r = kfifo_alloc(&node->ih_fifo,
58 KFD_IH_NUM_ENTRIES * node->kfd->device_info.ih_ring_entry_size,
61 dev_err(node->adev->dev, "Failed to allocate IH fifo\n");
65 node->ih_wq = alloc_workqueue("KFD IH", WQ_HIGHPRI, 1);
66 if (unlikely(!node->ih_wq)) {
67 kfifo_free(&node->ih_fifo);
68 dev_err(node->adev->dev, "Failed to allocate KFD IH workqueue\n");
71 spin_lock_init(&node->interrupt_lock);
73 INIT_WORK(&node
87 kfd_interrupt_exit(struct kfd_node *node) argument
115 enqueue_ih_ring_entry(struct kfd_node *node, const void *ih_ring_entry) argument
134 dequeue_ih_ring_entry(struct kfd_node *node, void *ih_ring_entry) argument
[all...]
/linux-master/drivers/clk/ti/
H A Dfixed-factor.c24 * @node: device node for this clock
28 static void __init of_ti_fixed_factor_clk_setup(struct device_node *node) argument
31 const char *clk_name = ti_dt_clk_name(node);
36 if (of_property_read_u32(node, "ti,clock-div", &div)) {
37 pr_err("%pOFn must have a clock-div property\n", node);
41 if (of_property_read_u32(node, "ti,clock-mult", &mult)) {
42 pr_err("%pOFn must have a clock-mult property\n", node);
46 if (of_property_read_bool(node, "ti,set-rate-parent"))
49 parent_name = of_clk_get_parent_name(node,
[all...]
/linux-master/drivers/clk/
H A Dclk-moxart.c16 static void __init moxart_of_pll_clk_init(struct device_node *node) argument
22 const char *name = node->name;
25 of_property_read_string(node, "clock-output-names", &name);
26 parent_name = of_clk_get_parent_name(node, 0);
28 base = of_iomap(node, 0);
30 pr_err("%pOF: of_iomap failed\n", node);
37 ref_clk = of_clk_get(node, 0);
39 pr_err("%pOF: of_clk_get failed\n", node);
45 pr_err("%pOF: failed to register clock\n", node);
50 of_clk_add_hw_provider(node, of_clk_hw_simple_ge
55 moxart_of_apb_clk_init(struct device_node *node) argument
[all...]

Completed in 227 milliseconds

1234567891011>>