Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 067f1017 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: qsee_ipc_irq_bridge: Use __poll_t for qiib_poll"

parents 158fc52b c4f0f365
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -175,10 +175,10 @@ static int qiib_restart_notifier_cb(struct notifier_block *this,
 *
 * Return: POLLIN for interrupt intercepted case and POLLRDHUP for SSR.
 */
static unsigned int qiib_poll(struct file *file, poll_table *wait)
static __poll_t qiib_poll(struct file *file, poll_table *wait)
{
	struct qiib_dev *devp = file->private_data;
	unsigned int mask = 0;
	__poll_t mask = 0;
	unsigned long flags;

	if (!devp) {