| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * linux/arch/arm/lib/csumpartialcopy.S |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 1995-1998 Russell King |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 8 | | - * published by the Free Software Foundation. |
|---|
| 9 | 6 | */ |
|---|
| 10 | 7 | #include <linux/linkage.h> |
|---|
| 11 | 8 | #include <asm/assembler.h> |
|---|
| 12 | 9 | |
|---|
| 13 | 10 | .text |
|---|
| 14 | 11 | |
|---|
| 15 | | -/* Function: __u32 csum_partial_copy_nocheck(const char *src, char *dst, int len, __u32 sum) |
|---|
| 16 | | - * Params : r0 = src, r1 = dst, r2 = len, r3 = checksum |
|---|
| 12 | +/* Function: __u32 csum_partial_copy_nocheck(const char *src, char *dst, int len) |
|---|
| 13 | + * Params : r0 = src, r1 = dst, r2 = len |
|---|
| 17 | 14 | * Returns : r0 = new checksum |
|---|
| 18 | 15 | */ |
|---|
| 19 | 16 | |
|---|