Skip to content

Commit ce17354

Browse files
committed
Change all #import to #include
1 parent 4c989fe commit ce17354

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

src/drivers/hal/hal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828
struct hal_device _gRootDevice = {
2929
.name = "root"
3030
};

src/drivers/mipi/mipi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929

3030
static uint64_t gmipi_reg;

src/drivers/plat/s5l8960.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool s5l8960_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8960) {

src/drivers/plat/s8000.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool s8000_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8000) {

src/drivers/plat/s8001.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool s8001_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8001) {

src/drivers/plat/s8003.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool s8003_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8003) {

src/drivers/plat/t7000.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool t7000_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x7000) {

src/drivers/plat/t7001.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool t7001_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x7001) {

src/drivers/plat/t8010.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool t8010_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8010) {

src/drivers/plat/t8011.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* SOFTWARE.
2525
*
2626
*/
27-
#import <pongo.h>
27+
#include <pongo.h>
2828

2929
static bool t8011_probe(struct hal_platform_driver* device_driver, struct hal_platform* device) {
3030
if (device->cpid == 0x8011) {

0 commit comments

Comments
 (0)