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

Commit df0462e7 authored by Michael Krufky's avatar Michael Krufky Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (8289): sms1xxx: remove #if LINUX_VERSION_CODE checks

parent fbd05c82
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -200,7 +200,6 @@ void smscore_registry_settype(char *devpath, enum sms_device_type_st type)
}



void list_add_locked(struct list_head *new, struct list_head *head,
		     spinlock_t *lock)
{
@@ -592,7 +591,6 @@ int smscore_load_firmware_from_file(struct smscore_device_t *coredev,
				    loadfirmware_t loadfirmware_handler)
{
	int rc = -ENOENT;

	const struct firmware *fw;
	u8 *fw_buffer;

@@ -1228,8 +1226,7 @@ int smscore_map_common_buffer(struct smscore_device_t *coredev,

	if (remap_pfn_range(vma, start,
			    coredev->common_buffer_phys >> PAGE_SHIFT,
			    size, pgprot_noncached(vma->vm_page_prot)))
	{
			    size, pgprot_noncached(vma->vm_page_prot))) {
		printk(KERN_INFO "%s remap_page_range failed\n", __func__);
		return -EAGAIN;
	}
+0 −1
Original line number Diff line number Diff line
@@ -43,7 +43,6 @@ typedef struct mutex kmutex_t;
#define kmutex_trylock(_p_) mutex_trylock(_p_)
#define kmutex_unlock(_p_) mutex_unlock(_p_)


#ifndef min
#define min(a, b) (((a) < (b)) ? (a) : (b))
#endif