diff options
| author | Len Brown <len.brown@intel.com> | 2012-06-04 00:35:19 -0400 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2012-06-04 00:35:19 -0400 |
| commit | 7e1bd6e38b1f30860ce25a014c6d6adfb0079f4a (patch) | |
| tree | 65c5898ba93007d4399150c7a127a670bcfbc30d /include/net/ax25.h | |
| parent | 301f33fbcf4ced53b3de114846ecece5d6aafeeb (diff) | |
| parent | f8f5701bdaf9134b1f90e5044a82c66324d2073f (diff) | |
Merge branch 'upstream' into bugfix-video
Update bugfix-video branch to 2.5-rc1
so I don't have to again resolve the
conflict in these patches vs. upstream.
Conflicts:
drivers/gpu/drm/gma500/psb_drv.c
text conflict: add comment vs delete neighboring line
keep just this:
/* igd_opregion_init(&dev_priv->opregion_dev); */
/* acpi_video_register(); */
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/net/ax25.h')
| -rw-r--r-- | include/net/ax25.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/net/ax25.h b/include/net/ax25.h index 94e09d361bb1..5d2352154cf6 100644 --- a/include/net/ax25.h +++ b/include/net/ax25.h | |||
| @@ -215,7 +215,7 @@ typedef struct ax25_dev { | |||
| 215 | struct ax25_dev *next; | 215 | struct ax25_dev *next; |
| 216 | struct net_device *dev; | 216 | struct net_device *dev; |
| 217 | struct net_device *forward; | 217 | struct net_device *forward; |
| 218 | struct ctl_table *systable; | 218 | struct ctl_table_header *sysheader; |
| 219 | int values[AX25_MAX_VALUES]; | 219 | int values[AX25_MAX_VALUES]; |
| 220 | #if defined(CONFIG_AX25_DAMA_SLAVE) || defined(CONFIG_AX25_DAMA_MASTER) | 220 | #if defined(CONFIG_AX25_DAMA_SLAVE) || defined(CONFIG_AX25_DAMA_MASTER) |
| 221 | ax25_dama_info dama; | 221 | ax25_dama_info dama; |
| @@ -441,11 +441,11 @@ extern void ax25_uid_free(void); | |||
| 441 | 441 | ||
| 442 | /* sysctl_net_ax25.c */ | 442 | /* sysctl_net_ax25.c */ |
| 443 | #ifdef CONFIG_SYSCTL | 443 | #ifdef CONFIG_SYSCTL |
| 444 | extern void ax25_register_sysctl(void); | 444 | extern int ax25_register_dev_sysctl(ax25_dev *ax25_dev); |
| 445 | extern void ax25_unregister_sysctl(void); | 445 | extern void ax25_unregister_dev_sysctl(ax25_dev *ax25_dev); |
| 446 | #else | 446 | #else |
| 447 | static inline void ax25_register_sysctl(void) {}; | 447 | static inline int ax25_register_dev_sysctl(ax25_dev *ax25_dev) { return 0; } |
| 448 | static inline void ax25_unregister_sysctl(void) {}; | 448 | static inline void ax25_unregister_dev_sysctl(ax25_dev *ax25_dev) {} |
| 449 | #endif /* CONFIG_SYSCTL */ | 449 | #endif /* CONFIG_SYSCTL */ |
| 450 | 450 | ||
| 451 | #endif | 451 | #endif |
