diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/audit.h | 1 | ||||
| -rw-r--r-- | include/linux/hrtimer.h | 4 | ||||
| -rw-r--r-- | include/linux/igmp.h | 2 | ||||
| -rw-r--r-- | include/linux/mmc/host.h | 8 | ||||
| -rw-r--r-- | include/linux/mv643xx.h | 1 | ||||
| -rw-r--r-- | include/linux/ncp_fs_sb.h | 2 | ||||
| -rw-r--r-- | include/linux/sunrpc/svc.h | 2 | ||||
| -rw-r--r-- | include/linux/sunrpc/svcsock.h | 2 |
8 files changed, 17 insertions, 5 deletions
diff --git a/include/linux/audit.h b/include/linux/audit.h index 229fa012c893..773e30df11ee 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #ifndef _LINUX_AUDIT_H_ | 24 | #ifndef _LINUX_AUDIT_H_ |
| 25 | #define _LINUX_AUDIT_H_ | 25 | #define _LINUX_AUDIT_H_ |
| 26 | 26 | ||
| 27 | #include <linux/types.h> | ||
| 27 | #include <linux/elf-em.h> | 28 | #include <linux/elf-em.h> |
| 28 | 29 | ||
| 29 | /* The netlink messages for the audit system is divided into blocks: | 30 | /* The netlink messages for the audit system is divided into blocks: |
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 3bef961b58b1..5bdbc744e773 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
| @@ -47,7 +47,7 @@ enum hrtimer_restart { | |||
| 47 | * HRTIMER_CB_IRQSAFE: Callback may run in hardirq context | 47 | * HRTIMER_CB_IRQSAFE: Callback may run in hardirq context |
| 48 | * HRTIMER_CB_IRQSAFE_NO_RESTART: Callback may run in hardirq context and | 48 | * HRTIMER_CB_IRQSAFE_NO_RESTART: Callback may run in hardirq context and |
| 49 | * does not restart the timer | 49 | * does not restart the timer |
| 50 | * HRTIMER_CB_IRQSAFE_NO_SOFTIRQ: Callback must run in softirq context | 50 | * HRTIMER_CB_IRQSAFE_NO_SOFTIRQ: Callback must run in hardirq context |
| 51 | * Special mode for tick emultation | 51 | * Special mode for tick emultation |
| 52 | */ | 52 | */ |
| 53 | enum hrtimer_cb_mode { | 53 | enum hrtimer_cb_mode { |
| @@ -139,7 +139,7 @@ struct hrtimer_sleeper { | |||
| 139 | }; | 139 | }; |
| 140 | 140 | ||
| 141 | /** | 141 | /** |
| 142 | * struct hrtimer_base - the timer base for a specific clock | 142 | * struct hrtimer_clock_base - the timer base for a specific clock |
| 143 | * @cpu_base: per cpu clock base | 143 | * @cpu_base: per cpu clock base |
| 144 | * @index: clock type index for per_cpu support when moving a | 144 | * @index: clock type index for per_cpu support when moving a |
| 145 | * timer to a base on another cpu. | 145 | * timer to a base on another cpu. |
diff --git a/include/linux/igmp.h b/include/linux/igmp.h index 9dbb525c5178..a113fe68d8a1 100644 --- a/include/linux/igmp.h +++ b/include/linux/igmp.h | |||
| @@ -218,5 +218,7 @@ extern void ip_mc_up(struct in_device *); | |||
| 218 | extern void ip_mc_down(struct in_device *); | 218 | extern void ip_mc_down(struct in_device *); |
| 219 | extern void ip_mc_dec_group(struct in_device *in_dev, __be32 addr); | 219 | extern void ip_mc_dec_group(struct in_device *in_dev, __be32 addr); |
| 220 | extern void ip_mc_inc_group(struct in_device *in_dev, __be32 addr); | 220 | extern void ip_mc_inc_group(struct in_device *in_dev, __be32 addr); |
| 221 | extern void ip_mc_rejoin_group(struct ip_mc_list *im); | ||
| 222 | |||
| 221 | #endif | 223 | #endif |
| 222 | #endif | 224 | #endif |
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h index 913e5752569f..bfcef8a1ad8b 100644 --- a/include/linux/mmc/host.h +++ b/include/linux/mmc/host.h | |||
| @@ -62,6 +62,12 @@ struct mmc_ios { | |||
| 62 | 62 | ||
| 63 | #define MMC_BUS_WIDTH_1 0 | 63 | #define MMC_BUS_WIDTH_1 0 |
| 64 | #define MMC_BUS_WIDTH_4 2 | 64 | #define MMC_BUS_WIDTH_4 2 |
| 65 | |||
| 66 | unsigned char timing; /* timing specification used */ | ||
| 67 | |||
| 68 | #define MMC_TIMING_LEGACY 0 | ||
| 69 | #define MMC_TIMING_MMC_HS 1 | ||
| 70 | #define MMC_TIMING_SD_HS 2 | ||
| 65 | }; | 71 | }; |
| 66 | 72 | ||
| 67 | struct mmc_host_ops { | 73 | struct mmc_host_ops { |
| @@ -87,6 +93,8 @@ struct mmc_host { | |||
| 87 | #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */ | 93 | #define MMC_CAP_4_BIT_DATA (1 << 0) /* Can the host do 4 bit transfers */ |
| 88 | #define MMC_CAP_MULTIWRITE (1 << 1) /* Can accurately report bytes sent to card on error */ | 94 | #define MMC_CAP_MULTIWRITE (1 << 1) /* Can accurately report bytes sent to card on error */ |
| 89 | #define MMC_CAP_BYTEBLOCK (1 << 2) /* Can do non-log2 block sizes */ | 95 | #define MMC_CAP_BYTEBLOCK (1 << 2) /* Can do non-log2 block sizes */ |
| 96 | #define MMC_CAP_MMC_HIGHSPEED (1 << 3) /* Can do MMC high-speed timing */ | ||
| 97 | #define MMC_CAP_SD_HIGHSPEED (1 << 4) /* Can do SD high-speed timing */ | ||
| 90 | 98 | ||
| 91 | /* host specific block data */ | 99 | /* host specific block data */ |
| 92 | unsigned int max_seg_size; /* see blk_queue_max_segment_size */ | 100 | unsigned int max_seg_size; /* see blk_queue_max_segment_size */ |
diff --git a/include/linux/mv643xx.h b/include/linux/mv643xx.h index e7d4da1cc9fa..c6d4ab86b83c 100644 --- a/include/linux/mv643xx.h +++ b/include/linux/mv643xx.h | |||
| @@ -1288,6 +1288,7 @@ struct mv64xxx_i2c_pdata { | |||
| 1288 | #define MV643XX_ETH_NAME "mv643xx_eth" | 1288 | #define MV643XX_ETH_NAME "mv643xx_eth" |
| 1289 | 1289 | ||
| 1290 | struct mv643xx_eth_platform_data { | 1290 | struct mv643xx_eth_platform_data { |
| 1291 | int port_number; | ||
| 1291 | u16 force_phy_addr; /* force override if phy_addr == 0 */ | 1292 | u16 force_phy_addr; /* force override if phy_addr == 0 */ |
| 1292 | u16 phy_addr; | 1293 | u16 phy_addr; |
| 1293 | 1294 | ||
diff --git a/include/linux/ncp_fs_sb.h b/include/linux/ncp_fs_sb.h index a503052138bd..6330fc76b00f 100644 --- a/include/linux/ncp_fs_sb.h +++ b/include/linux/ncp_fs_sb.h | |||
| @@ -50,6 +50,8 @@ struct ncp_server { | |||
| 50 | int packet_size; | 50 | int packet_size; |
| 51 | unsigned char *packet; /* Here we prepare requests and | 51 | unsigned char *packet; /* Here we prepare requests and |
| 52 | receive replies */ | 52 | receive replies */ |
| 53 | unsigned char *txbuf; /* Storage for current request */ | ||
| 54 | unsigned char *rxbuf; /* Storage for reply to current request */ | ||
| 53 | 55 | ||
| 54 | int lock; /* To prevent mismatch in protocols. */ | 56 | int lock; /* To prevent mismatch in protocols. */ |
| 55 | struct mutex mutex; | 57 | struct mutex mutex; |
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 83b3c7b433aa..35fa4d5aadd0 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
| @@ -194,9 +194,7 @@ static inline void svc_putu32(struct kvec *iov, __be32 val) | |||
| 194 | 194 | ||
| 195 | union svc_addr_u { | 195 | union svc_addr_u { |
| 196 | struct in_addr addr; | 196 | struct in_addr addr; |
| 197 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | ||
| 198 | struct in6_addr addr6; | 197 | struct in6_addr addr6; |
| 199 | #endif | ||
| 200 | }; | 198 | }; |
| 201 | 199 | ||
| 202 | /* | 200 | /* |
diff --git a/include/linux/sunrpc/svcsock.h b/include/linux/sunrpc/svcsock.h index cccea0a0feb4..7909687557bf 100644 --- a/include/linux/sunrpc/svcsock.h +++ b/include/linux/sunrpc/svcsock.h | |||
| @@ -66,7 +66,7 @@ struct svc_sock { | |||
| 66 | * Function prototypes. | 66 | * Function prototypes. |
| 67 | */ | 67 | */ |
| 68 | int svc_makesock(struct svc_serv *, int, unsigned short, int flags); | 68 | int svc_makesock(struct svc_serv *, int, unsigned short, int flags); |
| 69 | void svc_close_socket(struct svc_sock *); | 69 | void svc_force_close_socket(struct svc_sock *); |
| 70 | int svc_recv(struct svc_rqst *, long); | 70 | int svc_recv(struct svc_rqst *, long); |
| 71 | int svc_send(struct svc_rqst *); | 71 | int svc_send(struct svc_rqst *); |
| 72 | void svc_drop(struct svc_rqst *); | 72 | void svc_drop(struct svc_rqst *); |
