notify.c (c1f3ee120bb61045b1c0a3ead620d1d65af47130) notify.c (f940fcd8eadfe5b909a1474b57de7755edeee62b)
1/*
2 * All the USB notify logic
3 *
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * notifier functions originally based on those in kernel/sys.c
7 * but fixed up to not be so broken.
8 *
9 */
10
11
12#include <linux/kernel.h>
1/*
2 * All the USB notify logic
3 *
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
5 *
6 * notifier functions originally based on those in kernel/sys.c
7 * but fixed up to not be so broken.
8 *
9 */
10
11
12#include <linux/kernel.h>
13#include <linux/export.h>
13#include <linux/notifier.h>
14#include <linux/usb.h>
15#include <linux/mutex.h>
16#include "usb.h"
17
18static BLOCKING_NOTIFIER_HEAD(usb_notifier_list);
19
20/**

--- 48 unchanged lines hidden ---
14#include <linux/notifier.h>
15#include <linux/usb.h>
16#include <linux/mutex.h>
17#include "usb.h"
18
19static BLOCKING_NOTIFIER_HEAD(usb_notifier_list);
20
21/**

--- 48 unchanged lines hidden ---