Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Staging/no os device #2276

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ce81ae5
include: Add no_os_device.h
dbogdan Jul 8, 2024
1ea1233
drivers: accel: Make use of no_os_device.h
dbogdan Jul 8, 2024
020a31b
drivers: temperature: Make use of no_os_device.h
dbogdan Jul 9, 2024
0102c17
drivers: rtc: Make use of no_os_device.h
dbogdan Jul 9, 2024
e598b9f
drivers: adc: Make use of no_os_device.h
dbogdan Aug 11, 2024
176afea
drivers: adc-dac: Make use of no_os_device.h
dbogdan Aug 12, 2024
a8096da
drivers: afe: Make use of no_os_device.h
dbogdan Aug 12, 2024
f3a2fc7
drivers: amplifiers: Make use of no_os_device.h
dbogdan Aug 12, 2024
36cbac9
drivers: cdc: Make use of no_os_device.h
dbogdan Aug 12, 2024
a3d8610
drivers: display: Make use of no_os_device.h
dbogdan Aug 12, 2024
457a1cf
drivers: dac: Make use of no_os_device.h
dbogdan Aug 12, 2024
0f25224
drivers: digital-io: Make use of no_os_device.h
dbogdan Aug 12, 2024
a00101a
drivers: ecg: Make use of no_os_device.h
dbogdan Aug 12, 2024
0075f0b
drivers: eeprom: Make use of no_os_device.h
dbogdan Aug 12, 2024
c0b2b2a
drivers: filter: Make use of no_os_device.h
dbogdan Aug 12, 2024
1dbbf6d
drivers: frequency: Make use of no_os_device.h
dbogdan Aug 12, 2024
87ad8ad
drivers: gyro: Make use of no_os_device.h
dbogdan Aug 12, 2024
d98804b
drivers: impedance-analyzer: Make use of no_os_device.h
dbogdan Aug 12, 2024
be717c3
drivers: imu: Make use of no_os_device.h
dbogdan Aug 12, 2024
9414785
drivers: io-expander: Make use of no_os_device.h
dbogdan Aug 12, 2024
fccba61
drivers: io-link: Make use of no_os_device.h
dbogdan Aug 12, 2024
ad94a5a
drivers: meter: Make use of no_os_device.h
dbogdan Aug 12, 2024
c1d0dff
drivers: mux: Make use of no_os_device.h
dbogdan Aug 12, 2024
9d1d348
drivers: net: Make use of no_os_device.h
dbogdan Aug 12, 2024
38966cf
drivers: photo-electronic: Make use of no_os_device.h
dbogdan Aug 12, 2024
dccf2d2
drivers: potentiometer: Make use of no_os_device.h
dbogdan Aug 12, 2024
f2f33d8
drivers: power: Make use of no_os_device.h
dbogdan Aug 13, 2024
24af132
drivers: resolver: Make use of no_os_device.h
dbogdan Aug 13, 2024
b7325e9
drivers: rf-transceiver: Make use of no_os_device.h
dbogdan Aug 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
drivers: ecg: Make use of no_os_device.h
Declare a device driver compatibility list for each driver.

Signed-off-by: Dragos Bogdan <dragos.bogdan@analog.com>
  • Loading branch information
dbogdan committed Aug 12, 2024
commit a00101a6837b6001da5fc000f7e67760358af922
9 changes: 9 additions & 0 deletions drivers/ecg/adas1000/adas1000.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@
#include "adas1000.h"
#include "no_os_crc.h"
#include "no_os_alloc.h"
#include "no_os_device.h"

/**
* @brief Device driver compatibility list.
*/
const struct no_os_device adas1000_device_table[] = {
{.compatible = "adi,adas1000"},
{}
};

/*****************************************************************************/
/************************ Function Definitions *******************************/
Expand Down