]> git.pld-linux.org Git - packages/crossavr-libc.git/blame - 302-avr-libc-bug-avrtc-441.patch
- synchronized patches with official AVR toolchain 3.4.1.830
[packages/crossavr-libc.git] / 302-avr-libc-bug-avrtc-441.patch
CommitLineData
9fe267c2
PZ
1diff -Naurp include/avr/sleep.h include/avr/sleep.h
2--- include/avr/sleep.h 2012-02-13 19:05:22.000000000 +0530
3+++ include/avr/sleep.h 2012-02-13 19:06:38.000000000 +0530
4@@ -206,7 +206,7 @@
5
6 #define set_sleep_mode(mode) \
7 do { \
8- _SLEEP_CONTROL_REG = ((_SLEEP_CONTROL_REG & ~__BV(SM)) | (mode)); \
9+ _SLEEP_CONTROL_REG = ((_SLEEP_CONTROL_REG & ~_BV(SM)) | (mode)); \
10 } while(0)
11
12 #elif defined(__AVR_ATtiny167__) \
This page took 0.051158 seconds and 4 git commands to generate.