#!/bin/sh
#
# This script is part of QCPUFreq
# (c)2010 Daniel Klaffenbach

if [ -z $1 ]; then
	echo "Usage: $0 maxfreq"
	exit
fi

echo $1 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
