diff options
author | David S. Miller <davem@davemloft.net> | 2017-10-30 01:10:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-10-30 08:09:24 -0400 |
commit | e1ea2f9856b765a2eaabb403a6751f70efc9ba4c (patch) | |
tree | 771f0f96fdab1b27757730e96d911c73f5499ee4 /scripts/mod/file2alias.c | |
parent | aad93c70b9a3b80dbc383a31e77a119f69bdd856 (diff) | |
parent | 0b07194bb55ed836c2cc7c22e866b87a14681984 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Several conflicts here.
NFP driver bug fix adding nfp_netdev_is_nfp_repr() check to
nfp_fl_output() needed some adjustments because the code block is in
an else block now.
Parallel additions to net/pkt_cls.h and net/sch_generic.h
A bug fix in __tcp_retransmit_skb() conflicted with some of
the rbtree changes in net-next.
The tc action RCU callback fixes in 'net' had some overlap with some
of the recent tcf_block reworking.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'scripts/mod/file2alias.c')
-rw-r--r-- | scripts/mod/file2alias.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index 2b9395501d81..6ef6e63f96fd 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
@@ -761,7 +761,7 @@ static void do_input(char *alias, | |||
761 | sprintf(alias + strlen(alias), "%X,*", i); | 761 | sprintf(alias + strlen(alias), "%X,*", i); |
762 | } | 762 | } |
763 | 763 | ||
764 | /* input:b0v0p0e0-eXkXrXaXmXlXsXfXwXprX where X is comma-separated %02X. */ | 764 | /* input:b0v0p0e0-eXkXrXaXmXlXsXfXwX where X is comma-separated %02X. */ |
765 | static int do_input_entry(const char *filename, void *symval, | 765 | static int do_input_entry(const char *filename, void *symval, |
766 | char *alias) | 766 | char *alias) |
767 | { | 767 | { |
@@ -779,7 +779,6 @@ static int do_input_entry(const char *filename, void *symval, | |||
779 | DEF_FIELD_ADDR(symval, input_device_id, sndbit); | 779 | DEF_FIELD_ADDR(symval, input_device_id, sndbit); |
780 | DEF_FIELD_ADDR(symval, input_device_id, ffbit); | 780 | DEF_FIELD_ADDR(symval, input_device_id, ffbit); |
781 | DEF_FIELD_ADDR(symval, input_device_id, swbit); | 781 | DEF_FIELD_ADDR(symval, input_device_id, swbit); |
782 | DEF_FIELD_ADDR(symval, input_device_id, propbit); | ||
783 | 782 | ||
784 | sprintf(alias, "input:"); | 783 | sprintf(alias, "input:"); |
785 | 784 | ||
@@ -817,9 +816,6 @@ static int do_input_entry(const char *filename, void *symval, | |||
817 | sprintf(alias + strlen(alias), "w*"); | 816 | sprintf(alias + strlen(alias), "w*"); |
818 | if (flags & INPUT_DEVICE_ID_MATCH_SWBIT) | 817 | if (flags & INPUT_DEVICE_ID_MATCH_SWBIT) |
819 | do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX); | 818 | do_input(alias, *swbit, 0, INPUT_DEVICE_ID_SW_MAX); |
820 | sprintf(alias + strlen(alias), "pr*"); | ||
821 | if (flags & INPUT_DEVICE_ID_MATCH_PROPBIT) | ||
822 | do_input(alias, *propbit, 0, INPUT_DEVICE_ID_PROP_MAX); | ||
823 | return 1; | 819 | return 1; |
824 | } | 820 | } |
825 | ADD_TO_DEVTABLE("input", input_device_id, do_input_entry); | 821 | ADD_TO_DEVTABLE("input", input_device_id, do_input_entry); |