diff options
| author | David S. Miller <davem@davemloft.net> | 2012-03-03 15:04:45 -0500 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-03-03 15:04:45 -0500 |
| commit | 2556cd8603cd1f39205aaf61f054a76133359ae6 (patch) | |
| tree | 6eeb0c9a82e163cd58fec55a2da1488ae13d0793 | |
| parent | 8f9c208fc4c114f9fa719282b73df81cd9ff26c6 (diff) | |
| download | olio-linux-3.10-2556cd8603cd1f39205aaf61f054a76133359ae6.tar.xz olio-linux-3.10-2556cd8603cd1f39205aaf61f054a76133359ae6.zip | |
mdio.h: Include linux/types.h
Fixes:
/home/davem/src/GIT/net-next/usr/include/linux/mdio.h:271: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | include/linux/mdio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mdio.h b/include/linux/mdio.h index ec90da7232c..dfb947959ec 100644 --- a/include/linux/mdio.h +++ b/include/linux/mdio.h @@ -10,6 +10,7 @@ #ifndef __LINUX_MDIO_H__ #define __LINUX_MDIO_H__ +#include <linux/types.h> #include <linux/mii.h> /* MDIO Manageable Devices (MMDs). */ |