You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							105 lines
						
					
					
						
							4.9 KiB
						
					
					
				
			
		
		
	
	
							105 lines
						
					
					
						
							4.9 KiB
						
					
					
				| # --- T2-COPYRIGHT-NOTE-BEGIN --- | |
| # This copyright note is auto-generated by ./scripts/Create-CopyPatch. | |
| #  | |
| # T2 SDE: package/.../linux24-psionw/gcc-3.4.patch | |
| # Copyright (C) 2004 - 2006 The T2 SDE Project | |
| #  | |
| # More information can be found in the files COPYING and README. | |
| #  | |
| # This patch file is dual-licensed. It is available under the license the | |
| # patched project is licensed under, as long as it is an OpenSource license | |
| # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms | |
| # of the GNU General Public License as published by the Free Software | |
| # Foundation; either version 2 of the License, or (at your option) any later | |
| # version. | |
| # --- T2-COPYRIGHT-NOTE-END --- | |
| --- linux-2.4.27/arch/arm/Makefile.vanilla	2005-02-01 21:54:13.127646688 +0100 | |
| +++ linux-2.4.27/arch/arm/Makefile	2005-02-01 21:54:23.551062088 +0100 | |
| @@ -50,8 +50,8 @@ | |
|  tune-$(CONFIG_CPU_SA110)	:=-mtune=strongarm110 | |
|  tune-$(CONFIG_CPU_SA1100)	:=-mtune=strongarm1100 | |
|   | |
| -CFLAGS_BOOT	:=$(apcs-y) $(arch-y) $(tune-y) -mshort-load-bytes -msoft-float -Uarm | |
| -CFLAGS		+=$(apcs-y) $(arch-y) $(tune-y) -mshort-load-bytes -msoft-float -Uarm | |
| +CFLAGS_BOOT	:=$(apcs-y) $(arch-y) $(tune-y) -msoft-float -Uarm | |
| +CFLAGS		+=$(apcs-y) $(arch-y) $(tune-y) -msoft-float -Uarm | |
|  AFLAGS		+=$(apcs-y) $(arch-y) -msoft-float | |
|   | |
|  ifeq ($(CONFIG_CPU_26),y) | |
| --- linux-2.4.27/include/linux/sched.h.vanilla	2005-02-01 22:51:23.418163264 +0100 | |
| +++ linux-2.4.27/include/linux/sched.h	2005-02-01 22:51:37.002098192 +0100 | |
| @@ -763,7 +763,7 @@ | |
|  extern void end_lazy_tlb(struct mm_struct *mm); | |
|   | |
|  /* mmdrop drops the mm and the page tables */ | |
| -extern inline void FASTCALL(__mmdrop(struct mm_struct *)); | |
| +extern void FASTCALL(__mmdrop(struct mm_struct *)); | |
|  static inline void mmdrop(struct mm_struct * mm) | |
|  { | |
|  	if (atomic_dec_and_test(&mm->mm_count)) | |
| --- linux-2.4.27/include/linux/blkdev.h.vanilla	2005-02-01 22:59:51.021995752 +0100 | |
| +++ linux-2.4.27/include/linux/blkdev.h	2005-02-01 22:59:57.948942696 +0100 | |
| @@ -233,7 +233,7 @@ | |
|  extern void grok_partitions(struct gendisk *dev, int drive, unsigned minors, long size); | |
|  extern void register_disk(struct gendisk *dev, kdev_t first, unsigned minors, struct block_device_operations *ops, long size); | |
|  extern void generic_make_request(int rw, struct buffer_head * bh); | |
| -extern inline request_queue_t *blk_get_queue(kdev_t dev); | |
| +extern request_queue_t *blk_get_queue(kdev_t dev); | |
|  extern void blkdev_release_request(struct request *); | |
|   | |
|  /* | |
| --- linux-2.4.27/include/net/irda/irlmp_frame.h.vanilla	2005-02-01 23:24:49.294223752 +0100 | |
| +++ linux-2.4.27/include/net/irda/irlmp_frame.h	2005-02-01 23:24:55.000000000 +0100 | |
| @@ -40,7 +40,7 @@ | |
|   | |
|  #define CONTROL_BIT    0x80 | |
|   | |
| -inline void irlmp_send_data_pdu(struct lap_cb *self, __u8 dlsap, __u8 slsap,  | |
| +void irlmp_send_data_pdu(struct lap_cb *self, __u8 dlsap, __u8 slsap,  | |
|  				int expedited, struct sk_buff *skb); | |
|  void irlmp_send_lcf_pdu(struct lap_cb *self, __u8 dlsap, __u8 slsap,  | |
|  			__u8 opcode, struct sk_buff *skb); | |
| --- linux-2.4.27/include/net/irda/timer.h.vanilla	2005-02-01 23:23:56.300280056 +0100 | |
| +++ linux-2.4.27/include/net/irda/timer.h	2005-02-01 23:55:16.238486008 +0100 | |
| @@ -72,21 +72,21 @@ | |
|  void irda_start_timer(struct timer_list *ptimer, int timeout, void* data, | |
|  		      TIMER_CALLBACK callback); | |
|   | |
| -inline void irlap_start_slot_timer(struct irlap_cb *self, int timeout); | |
| -inline void irlap_start_query_timer(struct irlap_cb *self, int timeout); | |
| -inline void irlap_start_final_timer(struct irlap_cb *self, int timeout); | |
| -inline void irlap_start_wd_timer(struct irlap_cb *self, int timeout); | |
| -inline void irlap_start_backoff_timer(struct irlap_cb *self, int timeout); | |
| +void irlap_start_slot_timer(struct irlap_cb *self, int timeout); | |
| +void irlap_start_query_timer(struct irlap_cb *self, int timeout); | |
| +void irlap_start_final_timer(struct irlap_cb *self, int timeout); | |
| +void irlap_start_wd_timer(struct irlap_cb *self, int timeout); | |
| +void irlap_start_backoff_timer(struct irlap_cb *self, int timeout); | |
|   | |
|  void irlap_start_mbusy_timer(struct irlap_cb *self, int timeout); | |
|  void irlap_stop_mbusy_timer(struct irlap_cb *); | |
|   | |
|  struct lsap_cb; | |
|  struct lap_cb; | |
| -inline void irlmp_start_watchdog_timer(struct lsap_cb *, int timeout); | |
| -inline void irlmp_start_discovery_timer(struct irlmp_cb *, int timeout); | |
| -inline void irlmp_start_idle_timer(struct lap_cb *, int timeout); | |
| -inline void irlmp_stop_idle_timer(struct lap_cb *self);  | |
| +void irlmp_start_watchdog_timer(struct lsap_cb *, int timeout); | |
| +void irlmp_start_discovery_timer(struct irlmp_cb *, int timeout); | |
| +void irlmp_start_idle_timer(struct lap_cb *, int timeout); | |
| +void irlmp_stop_idle_timer(struct lap_cb *self);  | |
|   | |
|  #endif | |
|   | |
| --- linux-2.4.27/include/net/ip.h.vanilla	2005-02-01 23:17:32.000000000 +0100 | |
| +++ linux-2.4.27/include/net/ip.h	2005-02-01 23:55:18.968071048 +0100 | |
| @@ -137,7 +137,7 @@ | |
|  void ip_send_reply(struct sock *sk, struct sk_buff *skb, struct ip_reply_arg *arg, | |
|  		   unsigned int len);  | |
|   | |
| -extern __inline__ int ip_finish_output(struct sk_buff *skb); | |
| +extern int ip_finish_output(struct sk_buff *skb); | |
|   | |
|  struct ipv4_config | |
|  {
 | |
| 
 |