1
0
mirror of git://projects.qi-hardware.com/f32xbase.git synced 2024-11-24 00:33:10 +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:
Werner Almesberger 2010-10-21 18:26:43 -03:00
parent 3bbf318536
commit 3c9abdc65a
4 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ CFLAGS_om = -O -DDRIVER=c2_om
LDFLAGS_om = LDFLAGS_om =
OBJS_om = c2-om.o gpio.o rt.o OBJS_om = c2-om.o gpio-s3c24xx.o rt.o
NAME = f32x NAME = f32x
CC = $(CC_$(TARGET)) CC = $(CC_$(TARGET))

View File

@ -14,7 +14,7 @@
#include <stdint.h> #include <stdint.h>
#include <unistd.h> #include <unistd.h>
#include "gpio.h" #include "gpio-s3c24xx.h"
#include "c2-drv.h" #include "c2-drv.h"

View File

@ -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 * Written 2008 by Werner Almesberger
* Copyright 2008 Werner Almesberger * Copyright 2008 Werner Almesberger

View File

@ -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 * Written 2008 by Werner Almesberger
* Copyright 2008 Werner Almesberger * Copyright 2008 Werner Almesberger
@ -15,8 +15,8 @@
*/ */
#ifndef GPIO_H #ifndef GPIO_S3C24XX_H
#define GPIO_H #define GPIO_S3C24XX_H
#include <stdint.h> #include <stdint.h>
@ -71,4 +71,4 @@ static inline void gpio_input(unsigned port, unsigned bit)
void gpio_init(void); void gpio_init(void);
#endif /* !GPIO_H */ #endif /* !GPIO_S3C24XX_H */