diff options
| author | Ryan | 2024-03-30 15:07:19 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-30 15:07:19 +0100 |
| commit | 2dd406f08fc5d9877c8fd2642e94975eae37e86f (patch) | |
| tree | 97f1833428dff865e99a2332a9c779fc02ff803d /keyboards/rate | |
| parent | 76bd5142cfed1fb8e07b9f32fb0b010fbc068fa4 (diff) | |
Remove `quantum.h` includes from keyboard custom `matrix.c`s (#23371)
Diffstat (limited to 'keyboards/rate')
| -rw-r--r-- | keyboards/rate/pistachio_pro/matrix.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/keyboards/rate/pistachio_pro/matrix.c b/keyboards/rate/pistachio_pro/matrix.c index 6cbfb6dfea..bb962c76e2 100644 --- a/keyboards/rate/pistachio_pro/matrix.c +++ b/keyboards/rate/pistachio_pro/matrix.c @@ -14,10 +14,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <stdint.h> -#include <stdbool.h> #include "matrix.h" -#include "quantum.h" +#include "atomic_util.h" static const pin_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS; static const pin_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS; |