Skip to content

Commit 1160f01

Browse files
committed
drivers: video: mt9m114: Fix company name
Aptina was acquired by Onsemi for a long time. Fix the company name prefix and compatible string. Signed-off-by: Phi Bang Nguyen <phibang.nguyen@nxp.com>
1 parent 6208928 commit 1160f01

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

boards/shields/dvp_fpc24_mt9m114/dvp_fpc24_mt9m114.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
&dvp_fpc24_i2c {
1414
mt9m114: mt9m114@48 {
15-
compatible = "aptina,mt9m114";
15+
compatible = "onnn,mt9m114";
1616
reg = <0x48>;
1717

1818
port {

doc/releases/release-notes-2.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ Drivers and Sensors
300300

301301
* Video
302302

303-
* Added MCUX CSI and Aptina MT9M114 drivers
303+
* Added MCUX CSI and Onsemi MT9M114 drivers
304304
* Added software video pattern generator driver
305305

306306
* Watchdog

drivers/video/Kconfig.mt9m114

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# SPDX-License-Identifier: Apache-2.0
55

66
config VIDEO_MT9M114
7-
bool "MT9M114 Aptina CMOS digital image sensor"
7+
bool "MT9M114 Onsemi CMOS digital image sensor"
88
select I2C
9-
depends on DT_HAS_APTINA_MT9M114_ENABLED
9+
depends on DT_HAS_ONNN_MT9M114_ENABLED
1010
default y
1111
help
1212
Enable driver for MT9M114 CMOS digital image sensor device.

drivers/video/mt9m114.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: Apache-2.0
66
*/
77

8-
#define DT_DRV_COMPAT aptina_mt9m114
8+
#define DT_DRV_COMPAT onnn_mt9m114
99

1010
#include <zephyr/kernel.h>
1111
#include <zephyr/device.h>

dts/bindings/vendor-prefixes.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ ap Angst+Pfister
6464
apa Apa Electronic Co., Ltd
6565
apm Applied Micro Circuits Corporation (APM)
6666
apple Apple Inc.
67-
aptina Aptina Imaging
6867
arasan Arasan Chip Systems
6968
arc Synopsys, Inc. (formerly ARC International PLC)
7069
archermind ArcherMind Technology (Nanjing) Co., Ltd.

dts/bindings/video/aptina,mt9m114.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
description: MT9M114 CMOS video sensor
77

8-
compatible: "aptina,mt9m114"
8+
compatible: "onnn,mt9m114"
99

1010
include: i2c-device.yaml
1111

tests/drivers/build_all/video/app.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
clock-frequency = <100000>;
3333

3434
test_i2c_mt9m114: mt9m114@0 {
35-
compatible = "aptina,mt9m114";
35+
compatible = "onnn,mt9m114";
3636
reg = <0>;
3737
};
3838

0 commit comments

Comments
 (0)