|
@@ -537,15 +537,10 @@ struct pnp_resource *pnp_add_irq_resource(struct pnp_dev *dev, int irq,
|
|
|
{
|
|
|
struct pnp_resource *pnp_res;
|
|
|
struct resource *res;
|
|
|
- static unsigned char warned;
|
|
|
|
|
|
pnp_res = pnp_new_resource(dev);
|
|
|
if (!pnp_res) {
|
|
|
- if (!warned) {
|
|
|
- dev_err(&dev->dev, "can't add resource for IRQ %d\n",
|
|
|
- irq);
|
|
|
- warned = 1;
|
|
|
- }
|
|
|
+ dev_err(&dev->dev, "can't add resource for IRQ %d\n", irq);
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
@@ -563,15 +558,10 @@ struct pnp_resource *pnp_add_dma_resource(struct pnp_dev *dev, int dma,
|
|
|
{
|
|
|
struct pnp_resource *pnp_res;
|
|
|
struct resource *res;
|
|
|
- static unsigned char warned;
|
|
|
|
|
|
pnp_res = pnp_new_resource(dev);
|
|
|
if (!pnp_res) {
|
|
|
- if (!warned) {
|
|
|
- dev_err(&dev->dev, "can't add resource for DMA %d\n",
|
|
|
- dma);
|
|
|
- warned = 1;
|
|
|
- }
|
|
|
+ dev_err(&dev->dev, "can't add resource for DMA %d\n", dma);
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
@@ -590,16 +580,12 @@ struct pnp_resource *pnp_add_io_resource(struct pnp_dev *dev,
|
|
|
{
|
|
|
struct pnp_resource *pnp_res;
|
|
|
struct resource *res;
|
|
|
- static unsigned char warned;
|
|
|
|
|
|
pnp_res = pnp_new_resource(dev);
|
|
|
if (!pnp_res) {
|
|
|
- if (!warned) {
|
|
|
- dev_err(&dev->dev, "can't add resource for IO "
|
|
|
- "%#llx-%#llx\n",(unsigned long long) start,
|
|
|
- (unsigned long long) end);
|
|
|
- warned = 1;
|
|
|
- }
|
|
|
+ dev_err(&dev->dev, "can't add resource for IO %#llx-%#llx\n",
|
|
|
+ (unsigned long long) start,
|
|
|
+ (unsigned long long) end);
|
|
|
return NULL;
|
|
|
}
|
|
|
|
|
@@ -619,16 +605,12 @@ struct pnp_resource *pnp_add_mem_resource(struct pnp_dev *dev,
|
|
|
{
|
|
|
struct pnp_resource *pnp_res;
|
|
|
struct resource *res;
|
|
|
- static unsigned char warned;
|
|
|
|
|
|
pnp_res = pnp_new_resource(dev);
|
|
|
if (!pnp_res) {
|
|
|
- if (!warned) {
|
|
|
- dev_err(&dev->dev, "can't add resource for MEM "
|
|
|
- "%#llx-%#llx\n",(unsigned long long) start,
|
|
|
- (unsigned long long) end);
|
|
|
- warned = 1;
|
|
|
- }
|
|
|
+ dev_err(&dev->dev, "can't add resource for MEM %#llx-%#llx\n",
|
|
|
+ (unsigned long long) start,
|
|
|
+ (unsigned long long) end);
|
|
|
return NULL;
|
|
|
}
|
|
|
|