diff options
author | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 09:08:05 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 09:08:18 -0400 |
commit | e060c38434b2caa78efe7cedaff4191040b65a15 (patch) | |
tree | 407361230bf6733f63d8e788e4b5e6566ee04818 /drivers/isdn | |
parent | 10e4ac572eeffe5317019bd7330b6058a400dfc2 (diff) | |
parent | cc39c6a9bbdebfcf1a7dee64d83bf302bc38d941 (diff) |
Merge branch 'master' into for-next
Fast-forward merge with Linus to be able to merge patches
based on more recent version of the tree.
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/gigaset/gigaset.h | 2 | ||||
-rw-r--r-- | drivers/isdn/i4l/isdn_net.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/isdn/gigaset/gigaset.h b/drivers/isdn/gigaset/gigaset.h index 6dd360734cfd..212efaf9a4e4 100644 --- a/drivers/isdn/gigaset/gigaset.h +++ b/drivers/isdn/gigaset/gigaset.h | |||
@@ -34,7 +34,7 @@ | |||
34 | #include <linux/tty.h> | 34 | #include <linux/tty.h> |
35 | #include <linux/tty_driver.h> | 35 | #include <linux/tty_driver.h> |
36 | #include <linux/list.h> | 36 | #include <linux/list.h> |
37 | #include <asm/atomic.h> | 37 | #include <linux/atomic.h> |
38 | 38 | ||
39 | #define GIG_VERSION {0, 5, 0, 0} | 39 | #define GIG_VERSION {0, 5, 0, 0} |
40 | #define GIG_COMPAT {0, 4, 0, 0} | 40 | #define GIG_COMPAT {0, 4, 0, 0} |
diff --git a/drivers/isdn/i4l/isdn_net.c b/drivers/isdn/i4l/isdn_net.c index 48e9cc0369b1..1f73d7f7e024 100644 --- a/drivers/isdn/i4l/isdn_net.c +++ b/drivers/isdn/i4l/isdn_net.c | |||
@@ -2532,6 +2532,9 @@ static void _isdn_setup(struct net_device *dev) | |||
2532 | 2532 | ||
2533 | /* Setup the generic properties */ | 2533 | /* Setup the generic properties */ |
2534 | dev->flags = IFF_NOARP|IFF_POINTOPOINT; | 2534 | dev->flags = IFF_NOARP|IFF_POINTOPOINT; |
2535 | |||
2536 | /* isdn prepends a header in the tx path, can't share skbs */ | ||
2537 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; | ||
2535 | dev->header_ops = NULL; | 2538 | dev->header_ops = NULL; |
2536 | dev->netdev_ops = &isdn_netdev_ops; | 2539 | dev->netdev_ops = &isdn_netdev_ops; |
2537 | 2540 | ||