mtd_probe.c revision cf0fbc49e67b55f8d346fc94de28c90113505297
/*
* Copyright (C) 2010 - Maxim Levitsky
*
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* mtd_probe is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with mtd_probe; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
#include <fcntl.h>
#include <mtd/mtd-user.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "mtd_probe.h"
{
int mtd_fd;
int error;
if (argc != 2) {
return 1;
}
if (mtd_fd == -1) {
perror("open");
exit(-1);
}
if (error == -1) {
perror("ioctl");
exit(-1);
}
return -1;
}