move #include "rgb.h" from quantum.h to quantum.c
				
					
				
			I think `quantum.h` should contain only API declarations that `quantum.c` provides externally. `rgb.h` contains function weak definitions. This should not be in `quantum.h`.
This commit is contained in:
		@@ -15,6 +15,11 @@
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "quantum.h"
 | 
					#include "quantum.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE)
 | 
				
			||||||
 | 
						#include "rgb.h"
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef PROTOCOL_LUFA
 | 
					#ifdef PROTOCOL_LUFA
 | 
				
			||||||
#include "outputselect.h"
 | 
					#include "outputselect.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -30,9 +30,6 @@
 | 
				
			|||||||
#ifdef BACKLIGHT_ENABLE
 | 
					#ifdef BACKLIGHT_ENABLE
 | 
				
			||||||
    #include "backlight.h"
 | 
					    #include "backlight.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
#if !defined(RGBLIGHT_ENABLE) && !defined(RGB_MATRIX_ENABLE)
 | 
					 | 
				
			||||||
	#include "rgb.h"
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
#ifdef RGBLIGHT_ENABLE
 | 
					#ifdef RGBLIGHT_ENABLE
 | 
				
			||||||
  #include "rgblight.h"
 | 
					  #include "rgblight.h"
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user