trivial fix: ipchksum takes an unspecified input blob, not explicitly a number of...
[coreboot.git] / payloads / libpayload / libc / ipchecksum.c
index f430c965a5f55acbfedb9d3f0bb33ca1a61ea30f..8d67921b0378e6f6a80fd4a5b44f6f683ed49829 100644 (file)
@@ -4,6 +4,7 @@
  * It has originally been taken from the FreeBSD project.
  *
  * Copyright (c) 2001 Charles Mott <cm@linktel.net>
+ * Copyright (c) 2008 coresystems GmbH
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 
 #include <libpayload.h>
 
-unsigned short ipchksum(const unsigned short *ptr, unsigned long nbytes)
+unsigned short ipchksum(const void *vptr, unsigned long nbytes)
 {
        int sum, oddbyte;
+       const unsigned short *ptr = vptr;
 
        sum = 0;
        while (nbytes > 1) {