Remove broken and useless intr interface.

Submitted by: Doug Rabson <dfr@nlsystems.com>
	      Amancio Hasty <hasty@rah.star-gate.com>

Avoid compile warnings.
This commit is contained in:
Nicolas Souchu 1998-11-22 22:01:42 +00:00
parent c273f24b99
commit f8cf96db8f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41296
4 changed files with 6 additions and 10 deletions

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: iicbus.c,v 1.3 1998/11/07 14:33:46 nsouch Exp $ * $Id: iicbus.c,v 1.4 1998/11/08 18:42:34 nsouch Exp $
* *
*/ */
@ -107,8 +107,6 @@ static device_method_t iicbus_methods[] = {
DEVMETHOD(bus_print_child, iicbus_print_child), DEVMETHOD(bus_print_child, iicbus_print_child),
DEVMETHOD(bus_read_ivar, iicbus_read_ivar), DEVMETHOD(bus_read_ivar, iicbus_read_ivar),
DEVMETHOD(bus_write_ivar, iicbus_write_ivar), DEVMETHOD(bus_write_ivar, iicbus_write_ivar),
DEVMETHOD(bus_create_intr, bus_generic_create_intr),
DEVMETHOD(bus_connect_intr, bus_generic_connect_intr),
{ 0, 0 } { 0, 0 }
}; };

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: iiconf.c,v 1.1.1.1 1998/09/03 20:51:50 nsouch Exp $ * $Id: iiconf.c,v 1.2 1998/10/31 11:31:07 nsouch Exp $
* *
*/ */
#include <sys/param.h> #include <sys/param.h>
@ -213,7 +213,7 @@ iicbus_block_read(device_t bus, u_char slave, char *buf, int len, int *read)
u_char u_char
iicbus_get_addr(device_t dev) iicbus_get_addr(device_t dev)
{ {
u_long addr; uintptr_t addr;
device_t parent = device_get_parent(dev); device_t parent = device_get_parent(dev);
BUS_READ_IVAR(parent, dev, IICBUS_IVAR_ADDR, &addr); BUS_READ_IVAR(parent, dev, IICBUS_IVAR_ADDR, &addr);

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: smbconf.c,v 1.1.1.1 1998/09/03 20:52:54 nsouch Exp $ * $Id: smbconf.c,v 1.2 1998/10/31 11:39:54 nsouch Exp $
* *
*/ */
#include <sys/param.h> #include <sys/param.h>
@ -171,7 +171,7 @@ smbus_release_bus(device_t bus, device_t dev)
u_char u_char
smbus_get_addr(device_t dev) smbus_get_addr(device_t dev)
{ {
u_long addr; uintptr_t addr;
device_t parent = device_get_parent(dev); device_t parent = device_get_parent(dev);
BUS_READ_IVAR(parent, dev, SMBUS_IVAR_ADDR, &addr); BUS_READ_IVAR(parent, dev, SMBUS_IVAR_ADDR, &addr);

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: smbus.c,v 1.1.1.1 1998/09/03 20:52:54 nsouch Exp $ * $Id: smbus.c,v 1.2 1998/10/31 11:39:54 nsouch Exp $
* *
*/ */
#include <sys/param.h> #include <sys/param.h>
@ -81,8 +81,6 @@ static device_method_t smbus_methods[] = {
DEVMETHOD(bus_print_child, smbus_print_child), DEVMETHOD(bus_print_child, smbus_print_child),
DEVMETHOD(bus_read_ivar, smbus_read_ivar), DEVMETHOD(bus_read_ivar, smbus_read_ivar),
DEVMETHOD(bus_write_ivar, bus_generic_write_ivar), DEVMETHOD(bus_write_ivar, bus_generic_write_ivar),
DEVMETHOD(bus_create_intr, bus_generic_create_intr),
DEVMETHOD(bus_connect_intr, bus_generic_connect_intr),
{ 0, 0 } { 0, 0 }
}; };