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

Commit 96e7d915 authored by Al Viro's avatar Al Viro
Browse files

isp1362-hcd: don't reimplement proc_create_data()



... especially in a racy way

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 5a787a68
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -2192,14 +2192,11 @@ static void create_debug_file(struct isp1362_hcd *isp1362_hcd)
{
	struct proc_dir_entry *pde;

	pde = create_proc_entry(proc_filename, 0, NULL);
	pde = proc_create_data(proc_filename, 0, NULL, &proc_ops, isp1362_hcd);
	if (pde == NULL) {
		pr_warning("%s: Failed to create debug file '%s'\n", __func__, proc_filename);
		return;
	}

	pde->proc_fops = &proc_ops;
	pde->data = isp1362_hcd;
	isp1362_hcd->pde = pde;
}