Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a864ec76 authored by Jingoo Han's avatar Jingoo Han Committed by Greg Kroah-Hartman
Browse files

misc: lattice-ecp3-config: use spi_get_drvdata()



Use the wrapper functions for getting and setting the driver data using
spi_device instead of using dev_{get|set}_drvdata with &spi->dev, so we
can directly pass a struct spi_device.

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ba75b55
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -69,7 +69,7 @@ static const struct ecp3_dev ecp3_dev[] = {
static void firmware_load(const struct firmware *fw, void *context)
static void firmware_load(const struct firmware *fw, void *context)
{
{
	struct spi_device *spi = (struct spi_device *)context;
	struct spi_device *spi = (struct spi_device *)context;
	struct fpga_data *data = dev_get_drvdata(&spi->dev);
	struct fpga_data *data = spi_get_drvdata(spi);
	u8 *buffer;
	u8 *buffer;
	int ret;
	int ret;
	u8 txbuf[8];
	u8 txbuf[8];