Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 165536
Collapse All | Expand All

(-)usr.orig/src/kernel-modules/fritzcapi/e2220pc/src/driver.c (-1 / +1 lines)
Lines 756-762 Link Here
756
	close_func = func;
756
	close_func = func;
757
	close_data = data;
757
	close_data = data;
758
758
759
	INIT_WORK (&closing_work, closing_worker, capi_card);
759
	INIT_WORK (&closing_work, closing_worker);
760
	schedule_work (&closing_work);
760
	schedule_work (&closing_work);
761
	LOG("Worker scheduled.\n");
761
	LOG("Worker scheduled.\n");
762
} /* start_closing_worker */
762
} /* start_closing_worker */
(-)usr.orig/src/kernel-modules/fritzcapi/e5520pc/src/driver.c (-1 / +1 lines)
Lines 756-762 Link Here
756
	close_func = func;
756
	close_func = func;
757
	close_data = data;
757
	close_data = data;
758
758
759
	INIT_WORK (&closing_work, closing_worker, capi_card);
759
	INIT_WORK (&closing_work, closing_worker);
760
	schedule_work (&closing_work);
760
	schedule_work (&closing_work);
761
	LOG("Worker scheduled.\n");
761
	LOG("Worker scheduled.\n");
762
} /* start_closing_worker */
762
} /* start_closing_worker */
(-)usr.orig/src/kernel-modules/fritzcapi/fritz.usb/src/driver.c (-1 / +1 lines)
Lines 789-795 Link Here
789
	close_func = func;
789
	close_func = func;
790
	close_data = data;
790
	close_data = data;
791
791
792
	INIT_WORK (&closing_work, closing_worker, capi_card);
792
	INIT_WORK (&closing_work, closing_worker);
793
	schedule_work (&closing_work);
793
	schedule_work (&closing_work);
794
	LOG("Worker scheduled.\n");
794
	LOG("Worker scheduled.\n");
795
} /* start_closing_worker */
795
} /* start_closing_worker */
(-)usr.orig/src/kernel-modules/fritzcapi/fritz.usb2/src/driver.c (-1 / +1 lines)
Lines 789-795 Link Here
789
	close_func = func;
789
	close_func = func;
790
	close_data = data;
790
	close_data = data;
791
791
792
	INIT_WORK (&closing_work, closing_worker, capi_card);
792
	INIT_WORK (&closing_work, closing_worker);
793
	schedule_work (&closing_work);
793
	schedule_work (&closing_work);
794
	LOG("Worker scheduled.\n");
794
	LOG("Worker scheduled.\n");
795
} /* start_closing_worker */
795
} /* start_closing_worker */
(-)usr.orig/src/kernel-modules/fritzcapi/fritz.xusb/src/driver.c (-1 / +1 lines)
Lines 789-795 Link Here
789
	close_func = func;
789
	close_func = func;
790
	close_data = data;
790
	close_data = data;
791
791
792
	INIT_WORK (&closing_work, closing_worker, capi_card);
792
	INIT_WORK (&closing_work, closing_worker);
793
	schedule_work (&closing_work);
793
	schedule_work (&closing_work);
794
	LOG("Worker scheduled.\n");
794
	LOG("Worker scheduled.\n");
795
} /* start_closing_worker */
795
} /* start_closing_worker */
(-)usr.orig/src/kernel-modules/fritzcapi/fritz.xusb_CZ/src/driver.c (-1 / +1 lines)
Lines 789-795 Link Here
789
	close_func = func;
789
	close_func = func;
790
	close_data = data;
790
	close_data = data;
791
791
792
	INIT_WORK (&closing_work, closing_worker, capi_card);
792
	INIT_WORK (&closing_work, closing_worker);
793
	schedule_work (&closing_work);
793
	schedule_work (&closing_work);
794
	LOG("Worker scheduled.\n");
794
	LOG("Worker scheduled.\n");
795
} /* start_closing_worker */
795
} /* start_closing_worker */

Return to bug 165536