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

Commit af96f8a3 authored by matt mooney's avatar matt mooney Committed by Matt Turner
Browse files

alpha: remove unnecessary cast from void* in assignment.

parent 31019075
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ static int pci_mmap_resource(struct kobject *kobj,
{
	struct pci_dev *pdev = to_pci_dev(container_of(kobj,
						       struct device, kobj));
	struct resource *res = (struct resource *)attr->private;
	struct resource *res = attr->private;
	enum pci_mmap_state mmap_type;
	struct pci_bus_region bar;
	int i;
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ static int srm_env_proc_show(struct seq_file *m, void *v)
	srm_env_t	*entry;
	char		*page;

	entry = (srm_env_t *)m->private;
	entry = m->private;
	page = (char *)__get_free_page(GFP_USER);
	if (!page)
		return -ENOMEM;