mirror of
git://projects.qi-hardware.com/f32xbase.git
synced 2024-11-23 19:41:54 +02:00
Renamed gpio.* to gpio-s3c24xx.*
- f32x/Makefile (OBJS_om): rename gpio.o to gpio-s3c24xx.o - f32x/gpio-s3c24xx.h, f32x/gpio-s3c24xx.c, f32x/c2-om.c: renamed gpio.* to gpio-s3c24xx.* to
This commit is contained in:
parent
3bbf318536
commit
3c9abdc65a
@ -23,7 +23,7 @@ CFLAGS_om = -O -DDRIVER=c2_om
|
||||
|
||||
LDFLAGS_om =
|
||||
|
||||
OBJS_om = c2-om.o gpio.o rt.o
|
||||
OBJS_om = c2-om.o gpio-s3c24xx.o rt.o
|
||||
|
||||
NAME = f32x
|
||||
CC = $(CC_$(TARGET))
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <stdint.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "gpio.h"
|
||||
#include "gpio-s3c24xx.h"
|
||||
#include "c2-drv.h"
|
||||
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* f32x/gpio.c - Really primitive S3C244x GPIO access. Ports B-H only.
|
||||
* f32x/gpio-s3c24xx.c - Really primitive S3C244x GPIO access. Ports B-H only.
|
||||
*
|
||||
* Written 2008 by Werner Almesberger
|
||||
* Copyright 2008 Werner Almesberger
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* f32x/gpio.h - Really primitive S3C244x GPIO access. Ports B-H only.
|
||||
* f32x/gpio-s3c24xx.h - Really primitive S3C244x GPIO access. Ports B-H only.
|
||||
*
|
||||
* Written 2008 by Werner Almesberger
|
||||
* Copyright 2008 Werner Almesberger
|
||||
@ -15,8 +15,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GPIO_H
|
||||
#define GPIO_H
|
||||
#ifndef GPIO_S3C24XX_H
|
||||
#define GPIO_S3C24XX_H
|
||||
|
||||
|
||||
#include <stdint.h>
|
||||
@ -71,4 +71,4 @@ static inline void gpio_input(unsigned port, unsigned bit)
|
||||
void gpio_init(void);
|
||||
|
||||
|
||||
#endif /* !GPIO_H */
|
||||
#endif /* !GPIO_S3C24XX_H */
|
Loading…
Reference in New Issue
Block a user