aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire/net.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2011-07-22 17:49:48 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-07-22 17:49:48 -0400
commit441c196e84b11aad3123baa9320eee7abc6b5c98 (patch)
treeea51d689c9ac09cce10a5758f19d6adbd8a7a9d7 /drivers/firewire/net.c
parent951cc93a7493a81a47e20231441bc6cf17c98a37 (diff)
parent9a00c24ae7cb08dcd46edf1327a47871e8466444 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6: firewire: document the sysfs ABIs firewire: cdev: ABI documentation enhancements firewire: cdev: prevent race between first get_info ioctl and bus reset event queuing firewire: cdev: return -ENOTTY for unimplemented ioctls, not -EINVAL firewire: ohci: skip soft reset retries after card ejection firewire: ohci: fix PHY reg access after card ejection firewire: ohci: add a comment on PHY reg access serialization firewire: ohci: reduce potential context_stop latency firewire: ohci: remove superfluous posted write flushes firewire: net: replacing deprecated __attribute__((packed)) with __packed
Diffstat (limited to 'drivers/firewire/net.c')
-rw-r--r--drivers/firewire/net.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/firewire/net.c b/drivers/firewire/net.c
index eced1c25bf58..03a7a85d0424 100644
--- a/drivers/firewire/net.c
+++ b/drivers/firewire/net.c
@@ -7,6 +7,7 @@
7 */ 7 */
8 8
9#include <linux/bug.h> 9#include <linux/bug.h>
10#include <linux/compiler.h>
10#include <linux/delay.h> 11#include <linux/delay.h>
11#include <linux/device.h> 12#include <linux/device.h>
12#include <linux/ethtool.h> 13#include <linux/ethtool.h>
@@ -73,7 +74,7 @@ struct rfc2734_arp {
73 __be32 fifo_lo; /* lo 32bits of sender's FIFO addr */ 74 __be32 fifo_lo; /* lo 32bits of sender's FIFO addr */
74 __be32 sip; /* Sender's IP Address */ 75 __be32 sip; /* Sender's IP Address */
75 __be32 tip; /* IP Address of requested hw addr */ 76 __be32 tip; /* IP Address of requested hw addr */
76} __attribute__((packed)); 77} __packed;
77 78
78/* This header format is specific to this driver implementation. */ 79/* This header format is specific to this driver implementation. */
79#define FWNET_ALEN 8 80#define FWNET_ALEN 8
@@ -81,7 +82,7 @@ struct rfc2734_arp {
81struct fwnet_header { 82struct fwnet_header {
82 u8 h_dest[FWNET_ALEN]; /* destination address */ 83 u8 h_dest[FWNET_ALEN]; /* destination address */
83 __be16 h_proto; /* packet type ID field */ 84 __be16 h_proto; /* packet type ID field */
84} __attribute__((packed)); 85} __packed;
85 86
86/* IPv4 and IPv6 encapsulation header */ 87/* IPv4 and IPv6 encapsulation header */
87struct rfc2734_header { 88struct rfc2734_header {