/* * max9850.h -- codec driver for max9850 * * Copyright (C) 2011 taskit GmbH * Author: Christian Glindkamp * * 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. * */ #ifndef _MAX9850_H #define _MAX9850_H #define MAX9850_STATUSA 0x00 #define MAX9850_STATUSB 0x01 #define MAX9850_VOLUME 0x02 #define MAX9850_GENERAL_PURPOSE 0x03 #define MAX9850_INTERRUPT 0x04 #define MAX9850_ENABLE 0x05 #define MAX9850_CLOCK 0x06 #define MAX9850_CHARGE_PUMP 0x07 #define MAX9850_LRCLK_MSB 0x08 #define MAX9850_LRCLK_LSB 0x09 #define MAX9850_DIGITAL_AUDIO 0x0a #define MAX9850_CACHEREGNUM 11 /* MAX9850_DIGITAL_AUDIO */ #define MAX9850_MASTER (1<<7) #define MAX9850_INV (1<<6) #define MAX9850_BCINV (1<<5) #define MAX9850_DLY (1<<3) #define MAX9850_RTJ (1<<2) #endif ' onchange='this.form.submit();'> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/llc/llc_c_ev.c
diff options
context:
space:
mode:
authorFeng <fgao@ikuai8.com>2017-01-20 21:40:43 +0800
committerPablo Neira Ayuso <pablo@netfilter.org>2017-02-02 14:30:19 +0100
commit10435c1192d06bdb0bac7666452d8219d7e7c477 (patch)
tree93b76419142fe17b1d162d062c663297a3e8a965 /net/llc/llc_c_ev.c
parent1a28ad74ebd8f9d3c7eae0d781f72a6d30545e17 (diff)
netfilter: nf_tables: Eliminate duplicated code in nf_tables_table_enable()
If something fails in nf_tables_table_enable(), it unregisters the chains. But the rollback code is the same as nf_tables_table_disable() almostly, except there is one counter check. Now create one wrapper function to eliminate the duplicated codes. Signed-off-by: Feng <fgao@ikuai8.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/llc/llc_c_ev.c')