[PATCH] remove a __KLIBC__ tests in libsysfs, as klibc now supports getpagesize()

This commit is contained in:
greg@kroah.com 2004-01-28 18:53:12 -08:00 committed by Greg KH
parent 0115874355
commit bc59f0167a
1 changed files with 2 additions and 5 deletions

View File

@ -273,11 +273,8 @@ int sysfs_read_attribute(struct sysfs_attribute *sysattr)
sysattr->path);
return -1;
}
#ifdef __KLIBC__
pgsize = 0x1000;
#else
pgsize = sysconf(_SC_PAGESIZE);
#endif
pgsize = getpagesize();
fbuf = (unsigned char *)calloc(1, pgsize+1);
if (fbuf == NULL) {
dprintf("calloc failed\n");