Lines Matching defs:fds
1930 * @fds: eventfds to bind with irqs. unbind related irq if fds[n] is negative.
1931 * unbind "count" specified number of irqs if fds ptr is NULL.
1934 * fds[n] is negative. Unbind "count" specified number of irqs if fds ptr is
1940 unsigned int count, int32_t *fds)
1954 int fd = fds ? fds[i] : -1;
1998 s32 *fds;
2011 fds = memdup_user((void __user *)(arg + sizeof(hdr)),
2013 if (IS_ERR(fds))
2014 return PTR_ERR(fds);
2017 ret = dfl_fpga_set_irq_triggers(feature, hdr.start, hdr.count, fds);
2020 kfree(fds);