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

Commit 7af1d753 authored by Simon Holm Thøgersen's avatar Simon Holm Thøgersen Committed by Tony Luck
Browse files

[IA64] Remove NULL pointer check for argument never passed as NULL.



There is only palinfo_handle_smp as (indirect) user of palinfo_smp_call (by
way of smp_call_function_single) and surely palinfo_handle_smp never pass
NULL as parameter for info.

Signed-off-by: default avatarSimon Holm Thøgersen <odie@cs.aau.dk>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent 0fb232fd
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -900,12 +900,6 @@ static void
palinfo_smp_call(void *info)
{
	palinfo_smp_data_t *data = (palinfo_smp_data_t *)info;
	if (data == NULL) {
		printk(KERN_ERR "palinfo: data pointer is NULL\n");
		data->ret = 0; /* no output */
		return;
	}
	/* does this actual call */
	data->ret = (*data->func)(data->page);
}