Lines Matching defs:ssd130x
11 #include "ssd130x.h"
13 #define DRIVER_NAME "ssd130x-spi"
27 * These control bytes are considered registers by the ssd130x core driver
28 * and can be used by the ssd130x SPI driver to determine if the data sent
47 /* The ssd130x driver does not read registers but regmap expects a .read */
65 struct ssd130x_device *ssd130x;
87 ssd130x = ssd130x_probe(dev, regmap);
88 if (IS_ERR(ssd130x))
89 return PTR_ERR(ssd130x);
91 spi_set_drvdata(spi, ssd130x);
98 struct ssd130x_device *ssd130x = spi_get_drvdata(spi);
100 ssd130x_remove(ssd130x);
105 struct ssd130x_device *ssd130x = spi_get_drvdata(spi);
107 ssd130x_shutdown(ssd130x);