Skip to content

Commit

Permalink
Merge pull request #13271 from kfessel/patch-shed
Browse files Browse the repository at this point in the history
core/sched: sched.h: remove not needed bitarithm include to avoid conflict
  • Loading branch information
benpicco committed Feb 5, 2020
2 parents d6264f5 + 4445faa commit 9b33e1c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion core/include/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@

#include <stddef.h>
#include "kernel_defines.h"
#include "bitarithm.h"
#include "kernel_types.h"
#include "native_sched.h"
#include "clist.h"
Expand Down
1 change: 1 addition & 0 deletions cpu/nrf52/periph/usbdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "periph/usbdev.h"
#include "usb.h"
#include "usb/descriptor.h"
#include "bitarithm.h"

#define ENABLE_DEBUG (0)
#include "debug.h"
Expand Down
3 changes: 2 additions & 1 deletion cpu/sam0_common/periph/rtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
* effects, but simplifies the code. (This bit is always set on SAML21xxxxA)
*/
#ifndef RTC_MODE0_CTRLA_COUNTSYNC
#define RTC_MODE0_CTRLA_COUNTSYNC BIT15
#define RTC_MODE0_CTRLA_COUNTSYNC_Pos 15
#define RTC_MODE0_CTRLA_COUNTSYNC (0x1ul << RTC_MODE0_CTRLA_COUNTSYNC_Pos)
#endif

static rtt_cb_t _overflow_cb;
Expand Down
1 change: 1 addition & 0 deletions sys/frac/frac.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <stdio.h>
#include "assert.h"
#include "frac.h"
#include "bitarithm.h"

#define ENABLE_DEBUG (0)
#include "debug.h"
Expand Down

0 comments on commit 9b33e1c

Please sign in to comment.