Title: [6599] branches/2009R1/arch/blackfin/lib/checksum.c: export ip_compute_csum/csum_partial_copy_from_user for modules like other arches do
Revision
6599
Author
vapier
Date
2009-06-05 11:44:18 -0500 (Fri, 05 Jun 2009)

Log Message

export ip_compute_csum/csum_partial_copy_from_user for modules like other arches do

Modified Paths

Diff

Modified: branches/2009R1/arch/blackfin/lib/checksum.c (6598 => 6599)


--- branches/2009R1/arch/blackfin/lib/checksum.c	2009-06-05 16:43:39 UTC (rev 6598)
+++ branches/2009R1/arch/blackfin/lib/checksum.c	2009-06-05 16:44:18 UTC (rev 6599)
@@ -116,6 +116,7 @@
 {
 	return (__force __sum16)~do_csum(buff, len);
 }
+EXPORT_SYMBOL(ip_compute_csum);
 
 /*
  * copy from fs while checksumming, otherwise like csum_partial
@@ -130,6 +131,7 @@
 	memcpy(dst, (__force void *)src, len);
 	return csum_partial(dst, len, sum);
 }
+EXPORT_SYMBOL(csum_partial_copy_from_user);
 
 /*
  * copy from ds while checksumming, otherwise like csum_partial
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to