[PATCH] pcmcia: fix comment for pcmcia_load_firmware

The comment of "pcmcia_load_firmware" is wrong: the
firmware(*.cis) files reside in /lib/firmware/ _not_
/lib/firmware/cis/ .

Signed-off-by: komurojun-mbn@nifty.com
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>

authored by Komuro and committed by Dominik Brodowski 90ff8700 6171b88b

+2 -2
+2 -2
drivers/pcmcia/ds.c
··· 236 236 /** 237 237 * pcmcia_load_firmware - load CIS from userspace if device-provided is broken 238 238 * @dev - the pcmcia device which needs a CIS override 239 - * @filename - requested filename in /lib/firmware/cis/ 239 + * @filename - requested filename in /lib/firmware/ 240 240 * 241 241 * This uses the in-kernel firmware loading mechanism to use a "fake CIS" if 242 242 * the one provided by the card is broken. The firmware files reside in 243 - * /lib/firmware/cis/ in userspace. 243 + * /lib/firmware/ in userspace. 244 244 */ 245 245 static int pcmcia_load_firmware(struct pcmcia_device *dev, char * filename) 246 246 {