RTL8169: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
m unsigned int -> uint32_t
m unsigned int -> uint32_t
Line 114: Line 114:
struct Descriptor
struct Descriptor
{
{
unsigned int command, /* command/status uint32_t */
uint32_t command; /* command/status uint32_t */
vlan, /* currently unused */
uint32_t vlan; /* currently unused */
low_buf, /* low 32-bits of physical buffer address */
uint32_t low_buf; /* low 32-bits of physical buffer address */
high_buf; /* high 32-bits of physical buffer address */
uint32_t high_buf; /* high 32-bits of physical buffer address */
};
};