19 lines
327 B
C
19 lines
327 B
C
/*
|
|
* sja1105.h
|
|
*
|
|
* Functions for NXP SJA1105 Ethernet Switch
|
|
*
|
|
* Copyright (C) 2018-2019 NetModule AG - http://www.netmodule.com/
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SJA1105_H_
|
|
#define _SJA1105_H_
|
|
|
|
#include <spi.h>
|
|
|
|
int sja1105_read_reg(struct spi_slave *spi, uint32_t address, uint32_t *value);
|
|
|
|
#endif
|