| /include/linux/gpio/ |
| D | consumer.h | 244 WARN_ON(desc); in gpiod_put() 253 WARN_ON(desc); in devm_gpiod_unhinge() 261 WARN_ON(descs); in gpiod_put_array() 314 WARN_ON(desc); in devm_gpiod_put() 323 WARN_ON(descs); in devm_gpiod_put_array() 330 WARN_ON(desc); in gpiod_get_direction() 336 WARN_ON(desc); in gpiod_direction_input() 342 WARN_ON(desc); in gpiod_direction_output() 348 WARN_ON(desc); in gpiod_direction_output_raw() 354 WARN_ON(desc); in gpiod_enable_hw_timestamp_ns() [all …]
|
| D | driver.h | 734 WARN_ON(1); in gpiochip_irqchip_add_domain() 825 WARN_ON(1); in gpiod_to_chip() 831 WARN_ON(1); in gpiod_to_gpio_device() 837 WARN_ON(1); in gpio_device_get_base() 843 WARN_ON(1); in gpio_device_get_label() 849 WARN_ON(1); in gpio_device_find_by_label() 855 WARN_ON(1); in gpio_device_find_by_fwnode() 862 WARN_ON(1); in gpiochip_lock_as_irq() 869 WARN_ON(1); in gpiochip_unlock_as_irq()
|
| /include/linux/ |
| D | gpio.h | 148 WARN_ON(1); in gpio_free() 164 WARN_ON(1); in gpio_get_value() 171 WARN_ON(1); in gpio_set_value() 177 WARN_ON(1); in gpio_get_value_cansleep() 184 WARN_ON(1); in gpio_set_value_cansleep() 190 WARN_ON(1); in gpio_to_irq() 197 WARN_ON(1); in devm_gpio_request() 204 WARN_ON(1); in devm_gpio_request_one()
|
| D | rpmsg.h | 219 WARN_ON(1); in rpmsg_unregister_device() 228 WARN_ON(1); in __register_rpmsg_driver() 236 WARN_ON(1); in unregister_rpmsg_driver() 242 WARN_ON(1); in rpmsg_destroy_ept() 251 WARN_ON(1); in rpmsg_create_ept() 259 WARN_ON(1); in rpmsg_send() 268 WARN_ON(1); in rpmsg_sendto() 278 WARN_ON(1); in rpmsg_send_offchannel() 286 WARN_ON(1); in rpmsg_trysend() 295 WARN_ON(1); in rpmsg_trysendto() [all …]
|
| D | mmdebug.h | 55 WARN_ON(1); \ 64 WARN_ON(1); \ 75 WARN_ON(1); \ 86 WARN_ON(1); \ 91 #define VM_WARN_ON(cond) (void)WARN_ON(cond)
|
| D | ratelimit.h | 49 WARN_ON(__rtn_cond && __ratelimit(state)); \ 69 WARN_ON(condition)
|
| D | dma-fence.h | 496 if (WARN_ON(f1->context != f2->context)) in dma_fence_is_later() 529 if (WARN_ON(f1->context != f2->context)) in dma_fence_later() 581 WARN_ON(test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags)); in dma_fence_set_error() 582 WARN_ON(error >= 0 || error < -MAX_ERRNO); in dma_fence_set_error() 597 if (WARN_ON(!test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))) in dma_fence_timestamp()
|
| D | rwsem.h | 83 WARN_ON(atomic_long_read(&sem->count) == RWSEM_UNLOCKED_VALUE); in rwsem_assert_held_nolockdep() 88 WARN_ON(!(atomic_long_read(&sem->count) & RWSEM_WRITER_LOCKED)); in rwsem_assert_held_write_nolockdep() 175 WARN_ON(!rwsem_is_locked(sem)); in rwsem_assert_held_nolockdep() 180 WARN_ON(!rw_base_is_write_locked(&sem->rwbase)); in rwsem_assert_held_write_nolockdep()
|
| D | pgalloc_tag.h | 131 if (WARN_ON(!handle.ref)) in put_page_tag_ref() 146 if (WARN_ON(!page || !ref)) in update_page_tag_ref() 158 if (WARN_ON(!handle.ref || !ref)) in update_page_tag_ref()
|
| D | plist.h | 228 WARN_ON(plist_head_empty(head)); \ 245 WARN_ON(plist_head_empty(head)); \
|
| D | seq_buf.h | 100 if (WARN_ON(s->size == 0)) in seq_buf_str() 121 WARN_ON(s->len > s->size + 1); in seq_buf_get_buf()
|
| D | kmsan.h | 282 const bool __cond = WARN_ON(cond); \ 406 #define KMSAN_WARN_ON WARN_ON
|
| D | maple_tree.h | 728 #define MT_WARN_ON(__tree, __x) WARN_ON(__x) 729 #define MAS_WARN_ON(__mas, __x) WARN_ON(__x) 730 #define MAS_WR_WARN_ON(__mas, __x) WARN_ON(__x) 839 WARN_ON(!mt_lock_is_held(mt)); in mt_clear_in_rcu() 858 WARN_ON(!mt_lock_is_held(mt)); in mt_set_in_rcu()
|
| /include/linux/clk/ |
| D | tegra.h | 50 if (WARN_ON(!tegra_cpu_car_ops->wait_for_reset)) in tegra_wait_cpu_in_reset() 58 if (WARN_ON(!tegra_cpu_car_ops->put_in_reset)) in tegra_put_cpu_in_reset() 66 if (WARN_ON(!tegra_cpu_car_ops->out_of_reset)) in tegra_cpu_out_of_reset() 74 if (WARN_ON(!tegra_cpu_car_ops->enable_clock)) in tegra_enable_cpu_clock() 82 if (WARN_ON(!tegra_cpu_car_ops->disable_clock)) in tegra_disable_cpu_clock() 112 if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready)) in tegra_cpu_rail_off_ready() 120 if (WARN_ON(!tegra_cpu_car_ops->suspend)) in tegra_cpu_clock_suspend() 128 if (WARN_ON(!tegra_cpu_car_ops->resume)) in tegra_cpu_clock_resume()
|
| /include/asm-generic/ |
| D | bug.h | 121 #ifndef WARN_ON 122 #define WARN_ON(condition) ({ \ macro 148 DO_ONCE_LITE_IF(condition, WARN_ON, 1) 170 #define WARN_ON(condition) ({ \ macro 184 #define WARN_ON_ONCE(condition) WARN_ON(condition) 215 # define WARN_ON_SMP(x) WARN_ON(x)
|
| /include/linux/soc/qcom/ |
| D | wcnss_ctrl.h | 19 WARN_ON(1); in qcom_wcnss_open_channel()
|
| /include/crypto/ |
| D | blake2s.h | 80 WARN_ON(IS_ENABLED(DEBUG) && (!outlen || outlen > BLAKE2S_HASH_SIZE || in blake2s_init_key() 95 WARN_ON(IS_ENABLED(DEBUG) && ((!in && inlen > 0) || !out || !outlen || in blake2s()
|
| /include/media/ |
| D | media-entity.h | 535 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) in media_entity_enum_set() 550 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) in media_entity_enum_clear() 567 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) in media_entity_enum_test() 586 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) in media_entity_enum_test_and_set() 617 WARN_ON(ent_enum1->idx_max != ent_enum2->idx_max); in media_entity_enum_intersects()
|
| D | media-request.h | 116 if (!WARN_ON(!req->access_count)) in media_request_unlock_for_access() 164 WARN_ON(req->updating_count <= 0); in media_request_unlock_for_update()
|
| /include/net/caif/ |
| D | caif_layer.h | 29 WARN_ON(!(assert)); \
|
| /include/rdma/ |
| D | iba.h | 76 WARN_ON(bytes * 8 > num_bits); \ 97 WARN_ON(bytes * 8 > num_bits); \
|
| /include/scsi/ |
| D | fc_frame.h | 161 WARN_ON(fr_len(fp) < sizeof(struct fc_frame_header)); in fc_frame_header_get() 254 WARN_ON(r_ctl == 0); in __fc_fill_fc_hdr()
|
| /include/drm/ |
| D | drm_atomic_helper.h | 233 WARN_ON((!new_plane_state->crtc && new_plane_state->fb) || in drm_atomic_plane_enabling() 260 WARN_ON((new_plane_state->crtc == NULL && new_plane_state->fb != NULL) || in drm_atomic_plane_disabling()
|
| D | drm_modeset_lock.h | 114 WARN_ON(!list_empty(&lock->head)); in drm_modeset_lock_fini()
|
| /include/linux/usb/ |
| D | func_utils.h | 80 WARN_ON(req->buf == NULL); in free_ep_req()
|