You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RIOT/drivers
Martine Lenders 29842bb5e4 netdev2: rename to netdev and remove `gnrc_netdev`
With some minor hand-edits I used the following chain of commands:

```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
        xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
                     -e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
                     -e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
        grep "netdev2" | while read dir; do
                new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
                git mv -f "$dir" "$new_dir"
        done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
        grep "netdev2" | while read file; do
                new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
                git mv -f "$file" "$new_file"
        done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
        xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
6 years ago
..
adt7310 drivers/adt7310: adapted to SPI API changes 6 years ago
at30tse75x xtimer: Update xtimer usage to match API changes 6 years ago
at86rf2xx netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
bh1750fvi drivers/bh1750fvi: added names to return values 6 years ago
bme280 drivers: Add driver for BME280 6 years ago
bmp180 *: remove trailing underscores from header guards 6 years ago
cc110x netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
cc2420 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
dht drivers/dht: updated auto-init + some enhancements 6 years ago
enc28j60 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
encx24j600 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
ethos netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
hdc1000 *: remove trailing underscores from header guards 6 years ago
hih6130 periph/i2c: convert char to uint8_t where applicapable 7 years ago
ina220 periph/i2c: convert char to uint8_t where applicapable 7 years ago
include netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
io1_xplained *: remove trailing underscores from header guards 6 years ago
isl29020 drivers/isl29020: added default params.h file 6 years ago
isl29125 isl29125: added interrupt configuration register 6 years ago
jc42 *: remove trailing underscores from header guards 6 years ago
kw2xrf netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
l3g4200d drivers/l3g4200d: added default params.h file 6 years ago
lis3dh drivers/lis3dh: fixed bug and simplified init() 6 years ago
lis3mdl periph/i2c: convert char to uint8_t where applicapable 7 years ago
lpd8808 drivers: added driver for LPD8808 LED strips 6 years ago
lps331ap drivers/lps331ap: added default params.h file 6 years ago
lsm303dlhc drivers/lsm303dlhc: added default params.h file 6 years ago
mag3110 periph/i2c: convert char to uint8_t where applicapable 7 years ago
mma8x5x drivers/mma8x5x: remodeld driver 6 years ago
mpl3115a2 periph/i2c: convert char to uint8_t where applicapable 7 years ago
mpu9150 *: remove trailing underscores from header guards 6 years ago
mq3 drivers/mq3: adapted to ADC driver changes 7 years ago
mrf24j40 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
netdev_eth netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
netdev_ieee802154 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
nrf24l01p drivers/nrf24l01: removed doxgen warnings 6 years ago
nvram drivers/nvram: Add vfs compatible functions 6 years ago
nvram_spi drivers/nvram_spi: adapted to SPI API changes 6 years ago
pcd8544 drivers/pcd8544: adapted to SPI API changes 6 years ago
periph_common drivers/periph&cpu: add and use common periph_init() 6 years ago
pir debug: add missing line breaks 7 years ago
pn532 drivers/pn532: adapted to SPI interface changes 6 years ago
rgbled
saul sys/saul: Add analog inputs to SAUL via periph/adc 7 years ago
sdcard_spi drivers/sdcard_spi: adapted to SPI interface changes 6 years ago
servo timex: unambiguous time conversion macros 6 years ago
sht11 drivers: sht11: use xtimer 8 years ago
si70xx timex: unambiguous time conversion macros 6 years ago
srf02 periph/i2c: convert char to uint8_t where applicapable 7 years ago
srf08 periph/i2c: convert char to uint8_t where applicapable 7 years ago
tcs37727 drivers/tcs37727: SAUL support + misc fixes 6 years ago
tmp006 periph/i2c: convert char to uint8_t where applicapable 7 years ago
tsl2561 drivers/tsl2561: initial implementation + saul support 6 years ago
veml6070 drivers/veml6070: initial implementation 6 years ago
w5100 netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
xbee netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
Makefile make: remove superfluous nrf24l01p from Makefile 8 years ago
Makefile.dep netdev2: rename to netdev and remove `gnrc_netdev` 6 years ago
Makefile.include drivers/veml6070: initial implementation 6 years ago
doc.txt drivers: fixed doxygen groups 6 years ago