Commit 54c15ddd authored by Hans de Goede's avatar Hans de Goede Committed by Mauro Carvalho Chehab
Browse files

media: atomisp: remove atomisp_is_acc_enabled()

parent 3af445e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -538,7 +538,7 @@ irqreturn_t atomisp_isr(int irq, void *dev)

	clear_irq_reg(isp);

	if (!atomisp_streaming_count(isp) && !atomisp_is_acc_enabled(isp))
	if (!atomisp_streaming_count(isp))
		goto out_nowake;

	for (i = 0; i < isp->num_of_streams; i++) {
@@ -1837,7 +1837,7 @@ irqreturn_t atomisp_isr_thread(int irq, void *isp_ptr)

	spin_lock_irqsave(&isp->lock, flags);

	if (!atomisp_streaming_count(isp) && !atomisp_is_acc_enabled(isp)) {
	if (!atomisp_streaming_count(isp)) {
		spin_unlock_irqrestore(&isp->lock, flags);
		return IRQ_HANDLED;
	}
+0 −5
Original line number Diff line number Diff line
@@ -624,11 +624,6 @@ unsigned int atomisp_streaming_count(struct atomisp_device *isp)
	return sum;
}

unsigned int atomisp_is_acc_enabled(struct atomisp_device *isp)
{
	return 0;
}

/*
 * get input are used to get current primary/secondary camera
 */
+0 −1
Original line number Diff line number Diff line
@@ -57,7 +57,6 @@ extern const struct v4l2_ioctl_ops atomisp_file_ioctl_ops;

unsigned int atomisp_streaming_count(struct atomisp_device *isp);

unsigned int atomisp_is_acc_enabled(struct atomisp_device *isp);
/* compat_ioctl for 32bit userland app and 64bit kernel */
long atomisp_compat_ioctl32(struct file *file,
			    unsigned int cmd, unsigned long arg);