svn commit: r288975 - head/sys/dev/otus

Kevin Lo kevlo at FreeBSD.org
Wed Oct 7 03:33:27 UTC 2015


Author: kevlo
Date: Wed Oct  7 03:33:25 2015
New Revision: 288975
URL: https://svnweb.freebsd.org/changeset/base/288975

Log:
  Declare odata as a pointer type instead of a pointer to pointer.
  
  Reviewed by:	adrian

Modified:
  head/sys/dev/otus/if_otusreg.h

Modified: head/sys/dev/otus/if_otusreg.h
==============================================================================
--- head/sys/dev/otus/if_otusreg.h	Wed Oct  7 02:13:02 2015	(r288974)
+++ head/sys/dev/otus/if_otusreg.h	Wed Oct  7 03:33:25 2015	(r288975)
@@ -874,7 +874,7 @@ struct otus_softc;
 struct otus_tx_cmd {
 	uint8_t			*buf;
 	uint16_t		buflen;
-	void *			*odata;
+	void			*odata;
 	uint16_t		odatalen;
 	uint16_t		token;
 	STAILQ_ENTRY(otus_tx_cmd)	next_cmd;


More information about the svn-src-head mailing list