~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/m68k/lib/checksum_no.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
{
102
102
        return (__force __sum16)~do_csum(iph,ihl*4);
103
103
}
 
104
EXPORT_SYMBOL(ip_fast_csum);
104
105
#endif
105
106
 
106
107
/*
140
141
        memcpy(dst, (__force const void *)src, len);
141
142
        return csum_partial(dst, len, sum);
142
143
}
 
144
EXPORT_SYMBOL(csum_partial_copy_from_user);
143
145
 
144
146
/*
145
147
 * copy from ds while checksumming, otherwise like csum_partial
151
153
        memcpy(dst, src, len);
152
154
        return csum_partial(dst, len, sum);
153
155
}
 
156
EXPORT_SYMBOL(csum_partial_copy_nocheck);