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
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
*/
|
||||
|
||||
#include <linux/bug.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/device.h>
|
||||
#include <linux/ethtool.h>
|
||||
@@ -73,7 +74,7 @@ struct rfc2734_arp {
|
||||
__be32 fifo_lo; /* lo 32bits of sender's FIFO addr */
|
||||
__be32 sip; /* Sender's IP Address */
|
||||
__be32 tip; /* IP Address of requested hw addr */
|
||||
} __attribute__((packed));
|
||||
} __packed;
|
||||
|
||||
/* This header format is specific to this driver implementation. */
|
||||
#define FWNET_ALEN 8
|
||||
@@ -81,7 +82,7 @@ struct rfc2734_arp {
|
||||
struct fwnet_header {
|
||||
u8 h_dest[FWNET_ALEN]; /* destination address */
|
||||
__be16 h_proto; /* packet type ID field */
|
||||
} __attribute__((packed));
|
||||
} __packed;
|
||||
|
||||
/* IPv4 and IPv6 encapsulation header */
|
||||
struct rfc2734_header {
|
||||
|
Reference in New Issue
Block a user