/*1* Copyright (c) 2010, Intel Corporation.2*3* This program is free software; you can redistribute it and/or modify it4* under the terms and conditions of the GNU General Public License,5* version 2, as published by the Free Software Foundation.6*7* This program is distributed in the hope it will be useful, but WITHOUT8* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or9* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for10* more details.11*12* You should have received a copy of the GNU General Public License along with13* this program; if not, write to the Free Software Foundation, Inc., 59 Temple14* Place - Suite 330, Boston, MA 02111-1307 USA.15*16* Author: John Fastabend <[email protected]>17*/1819#ifndef _DCB_EVENT_H20#define _DCB_EVENT_H2122enum dcbevent_notif_type {23DCB_APP_EVENT = 1,24};2526extern int register_dcbevent_notifier(struct notifier_block *nb);27extern int unregister_dcbevent_notifier(struct notifier_block *nb);28extern int call_dcbevent_notifiers(unsigned long val, void *v);2930#endif313233