diff options
author | Dan Williams <dcbw@redhat.com> | 2010-03-18 17:13:59 -0700 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-03-18 17:13:59 -0700 |
commit | 4dd9b291354e76f34b0d6d7b5c3b28d03a624418 (patch) | |
tree | 384804ef320f8344b1a97aa1cdbc81b5d46d0b63 /extras/modem-modeswitch/utils.h | |
parent | 38a3cde11bc77af49a96245b8a8a0f2b583a344c (diff) |
modeswitch: morph into tool that only switches Mobile Action cables
Remove option modeswitching code; use usb_modeswitch already, people.
Diffstat (limited to 'extras/modem-modeswitch/utils.h')
-rw-r--r-- | extras/modem-modeswitch/utils.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/extras/modem-modeswitch/utils.h b/extras/modem-modeswitch/utils.h deleted file mode 100644 index 1ef557a892..0000000000 --- a/extras/modem-modeswitch/utils.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Modem mode switcher - * - * Copyright (C) 2009 Dan Williams <dcbw@redhat.com> - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details: - */ - -#ifndef __UTILS_H__ -#define __UTILS_H__ - -#define LOG_ERR 0 -#define LOG_MSG 1 -#define LOG_DBG 2 - -#define message(fmt, args...) do_log (LOG_MSG, fmt, ##args); -#define error(fmt, args...) do_log (LOG_ERR, fmt, ##args); -#define debug(fmt, args...) do_log (LOG_DBG, fmt, ##args); - -void do_log (int level, const char *fmt, ...); -int log_startup (const char *path, int do_debug, int be_quiet); -void log_shutdown (void); - -#endif /* __UTILS_H__ */ |