Skip to content

Commit 0f1cb4d

Browse files
drm/ssd130x: Fix include guard name
This is a leftover from an early iteration of the driver when it was still named ssd1307 instead of ssd130x. Change it for consistency with the rest. Signed-off-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn> Link: https://patchwork.freedesktop.org/patch/msgid/20230512120232.304603-1-javierm@redhat.com
1 parent 60aebc9 commit 0f1cb4d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/gpu/drm/solomon/ssd130x.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
* Copyright 2012 Free Electrons
1111
*/
1212

13-
#ifndef __SSD1307X_H__
14-
#define __SSD1307X_H__
13+
#ifndef __SSD130X_H__
14+
#define __SSD130X_H__
1515

1616
#include <drm/drm_connector.h>
1717
#include <drm/drm_crtc.h>
@@ -94,4 +94,4 @@ struct ssd130x_device *ssd130x_probe(struct device *dev, struct regmap *regmap);
9494
void ssd130x_remove(struct ssd130x_device *ssd130x);
9595
void ssd130x_shutdown(struct ssd130x_device *ssd130x);
9696

97-
#endif /* __SSD1307X_H__ */
97+
#endif /* __SSD130X_H__ */

0 commit comments

Comments
 (0)