svn commit: r358722 - head/sys/dev/iicbus

Andreas Tobler andreast at FreeBSD.org
Fri Mar 6 21:26:36 UTC 2020


Author: andreast
Date: Fri Mar  6 21:26:35 2020
New Revision: 358722
URL: https://svnweb.freebsd.org/changeset/base/358722

Log:
  Drop 'All rights reserved'
  Replace hardcoded size by nitems

Modified:
  head/sys/dev/iicbus/ds1775.c

Modified: head/sys/dev/iicbus/ds1775.c
==============================================================================
--- head/sys/dev/iicbus/ds1775.c	Fri Mar  6 21:24:09 2020	(r358721)
+++ head/sys/dev/iicbus/ds1775.c	Fri Mar  6 21:26:35 2020	(r358722)
@@ -2,7 +2,6 @@
  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
  *
  * Copyright (c) 2010 Andreas Tobler
- * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -104,7 +103,7 @@ ds1775_read_2(device_t dev, uint32_t addr, uint8_t reg
 
 	for (;;)
 	{
-		err = iicbus_transfer(dev, msg, 2);
+		err = iicbus_transfer(dev, msg, nitems(msg));
 		if (err != 0)
 			goto retry;
 


More information about the svn-src-head mailing list